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

taxonomy.html « _default « layouts - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21511decbd5612c896f52d59c4d048599a09c89d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ define "title" }}
    <h1 class="bold-title is-1">{{ .Data.Singular | humanize }}: {{ lower .Title | markdownify }}</h1>
{{ end }}

{{ define "main" }}
    <div class="container">
        <ul>
            {{ range .Pages.ByPublishDate.Reverse }}
            {{ if .Date }}
            <li>
                <a href="{{ .Permalink }}">{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }} | {{ .Title | markdownify }}</a>
            </li>
            {{ else }}
            <li>
                <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
            </li>
            {{ end }}
            {{ end }}
        </ul>
    </div>
{{ end }}