1
0
Files
www.taylors.life/themes/hugo-theme-minos/layouts/_default/terms.html
Eric Taylor 9a313c53a8 Move theme from subrepo into the main repo
the theme is customized for this site so having it
as a sub repo dosent make sense
2025-12-24 11:05:37 -05:00

27 lines
830 B
HTML

{{ partial "head.html" . }}
<body>
<div id="container">
{{ partial "header.html" . }}
<section id="main" class="outer">
<section class="layout-wrap">
<div class="layout-title">
<span>{{ .Title }}</span>
</div>
<div class="layout-wrap-inner tag-cloud">
{{ $site := .Site }}
{{ $data := .Data }}
<ul>
{{ range $key, $value := .Data.Terms.Alphabetical }}
<li>
<a href="{{ $site.LanguagePrefix }}/{{ $data.Plural }}/{{ $value.Name | urlize }}">{{ $value.Name }}</a>({{ $value.Count }})
</li>
{{ end }}
</ul>
</div>
</section>
</section>
{{ partial "footer.html" . }}
</div>
</body>
</html>