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: a93860a8ecf18f6c2ddaba5790060f1b285fc689 (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 }}