no-js.club/layouts/tags/terms.html

16 lines
353 B
HTML

{{ define "main" }}
<main>
<header>
<h1>Tags, sorted by age of content</h1>
</header>
{{ $taxo := "tags" }}
<ul class="{{ $taxo }}">
{{ with ($.Site.GetPage (printf "/%s" $taxo)) }}
{{ range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Title}}</a></li>
{{ end }}
{{ end }}
</ul>
</main>
{{ end }}