Welcome to mirror list, hosted at ThFree Co, Russian Federation.

list.html « _default « layouts - gitlab.com/kskarthik/resto-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ad4bf6ca814f8293fe6f6f7bd2ab659fb2d0e0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{define "main"}}
<h2 class="text-center">{{.Site.Title}} - Blog</h2>
<br>
<div class="container">
    {{range .Pages}}
    <div class="container">
        <h5><a href="{{.Permalink}}">{{ .Title }}</a></h5>
        <small class="text-secondary">{{.PublishDate.Format "January 2, 2006"}} | {{.ReadingTime}} minute read</small> 
    </div>  
    <br>      
    {{end}}
</div>
{{end}}