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

terms.html « authors « layouts - github.com/jonathanjanssens/hugo-casper3.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4046fd593cfb1d7ec3e8ea86fc40cb05868c6e33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{ define "main" }}

<header class="site-archive-header">
    {{- partial "site-header.html" $ -}}

    <div class="inner">
        <div class="site-header-content author-header">
            <h1>Authors</h1>
        </div>
    </div>
</header>

<main id="site-main" class="site-main outer">

    <div class="inner terms">
        <div class="authors">
            <ul>
                {{ range (sort .Data.Pages ".Params.name" "asc") }}
                {{- partial "author-overview.html" . -}}
                {{ end }}
            </ul>
        </div>
    </div>
</main>

{{ end }}