cyberpink/layouts/partials/menu.html

7 lines
272 B
HTML
Raw Normal View History

2023-08-10 03:39:50 +02:00
<menu type="toolbar">
{{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>