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: 786676b131c080b595cabc02242aef64d8e590d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "title" }}
    <h1 class="bold-title is-1">Tagged "{{ lower .Title }}"</h1>
{{ end }}

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