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

index.html « layouts - github.com/garvincasimir/hugo-h5bp-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 94d9ebdf6fdb8fbcbd9d183bf2735348d77a3072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{ partial "header.html" . }}
    {{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
    {{ range $pages }}
    <article>
        <header> 
            <h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
        </header>
        {{ .Summary }}
    </article>
    {{ end }}
   

    {{ partial "pagination.html" .Paginator }}         
{{ partial "footer.html" . }}