website-theme/layouts/partials/tags/page.html

11 lines
328 B
HTML
Raw Permalink Normal View History

2022-05-08 18:02:35 -04:00
<!-- List the tags that apply to this page -->
<div class="tags tags-page">
2022-05-08 18:02:35 -04:00
<ul>
{{ range .Param "tags" }}
{{ $name := . }}
{{ with $.Site.GetPage (printf "/tags/%s" ($name | urlize)) }}
<li><a class="p-category" href="{{ .Permalink }}">{{ $name }}</a></li>
2022-05-08 18:02:35 -04:00
{{ end }}
{{ end }}
</ul>
</div>