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: 53fa5671bfc09030f2f7ec1db1feb620d55485bd (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="{{ .URL }}">{{ .Title }}</a>
            <p>{{ .Render "time-element" }}</p>
        </li>
        {{ end }}
    </ul>
</main>
{{ end }}