hugo-themes/antidocs/layouts/partials/menu.html

7 lines
345 B
HTML
Raw Permalink Normal View History

2024-02-11 01:09:03 +01:00
<menu>
{{range $name, $taxonomy := .Site.Taxonomies.tags}}
{{ with $.Site.GetPage (printf "/tags/%s" $name) }}
<a href={{ .RelPermalink }} title="All pages with tag <i>{{$name}}</i>">#{{$name}}</a>
{{end}}
{{end}}
</menu>