birdsounds.media/layouts/_default/tags.html

28 lines
569 B
HTML
Raw Normal View History

{{ define "main" }}
{{ if not hugo.IsProduction }}
<aside class="development-info">
<p>template: tags.html</p>
<p>{{debug.Dump .}}</p>
<p><br></p>
</aside>
{{ end }}
<main>
<header class="page-header section">
<div class="container">
<h1>{{ .Title }}</h1>
</div>
</header>
<section class="section">
<div class="container">
<ul class="list-of-all-tags">
{{ range .Data.Terms.ByCount }}
<li>
<a href="{{ .Page.Permalink }}">{{ .Name }}</a>
<span>{{ .Count }}</span>
</li>
{{end}}
</ul>
</div>
</section>
</main>
{{ end }}