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: 367c35ac5cc335212a609a9c4da7117e2fed23be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{{ 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 ":date_medium") }} |
                {{ .Title | markdownify }}</a>
        </li>
        {{ else }}
        <li>
            <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
        </li>
        {{ end }}
        {{ end }}
    </ul>
</div>
{{ end }}