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

list.html « _default « layouts - github.com/gundamew/hugo-bingo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fc812d1965b2cad7bf80f02d0dd733d455a43a7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}
<main id="list">
    <h1>{{ .Title }}</h1>
    <ul>
        {{ range .Data.Pages }}
        <li>
            <a href="{{ .Permalink }}">{{ .Title }}</a>
            <p>{{- partial "date.html" . -}}</p>
        </li>
        {{ end }}
    </ul>
</main>
{{ end }}