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

terms.html « _default « layouts - github.com/de-souza/hugo-flex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e1ab6613e172df2232fa9b7cb2f914e85edd7c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}

{{ partial "heading.html" . }}

{{ .Content }}

<ul class="Tags">
  {{ range .Pages }}
    <li class="Tags-item u-background">
      <a class="Tags-link u-clickable" href="{{ .RelPermalink }}">{{ .Title }}</a>
    </li>
  {{ end }}
</ul>

{{ end }}