This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
blog/themes/kiera/layouts/_default/terms.html

19 lines
349 B
HTML
Raw Permalink Normal View History

2024-10-28 16:26:25 -05:00
{{ define "main" }}
<section id="list">
{{ $baseurl := .Site.BaseURL }}
<h2>{{ .Title }}</h2>
{{ .Content }}
<ul>
{{ range $key, $value := .Data.Terms }}
<li><a href="{{ $key | urlize }}">{{ $key }}</a> <span class="count">({{ .Count }} entries)</span></li>
{{ end }}
</ul>
</section>
{{ end }}