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

terms.html « _default « layouts - github.com/rafed/ramium.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2d5b4af49f48d8599e73b263752f1bb187b49ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ define "main" }}

<div class="content">
    <h1 class="title is-3">{{ .Title | title }}</h1>

    <ul id="all-tags">
        {{range sort (.Paginator .Site.Params.PaginateTagsPerPage).Pages.ByTitle }}
        <li>
            <a href="{{ .RelPermalink }}">
                <span class="tag is-dark is-large is-rounded">
                    {{ .Title | title }}
                </span>
            </a>
        </li>
        {{ end }}
    </ul>
</div>

{{- partial "pagination.html" . -}}

{{ end }}