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

11 lines
No EOL
328 B
HTML

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