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: a8a7a751ebb6ebf5751cae22a97f8c6e4582c2cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}

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

{{ end }}