mirror of
https://github.com/imfing/hextra.git
synced 2025-11-02 19:14:55 -05:00
* feat(tags): improve usability of tags * Tags can be shown also at docs * Documented tag-related config flags * Added example tags to the site * Made rendered tags active * Move tags listing to ToC * Hide tags section on no tags
7 lines
254 B
HTML
7 lines
254 B
HTML
<p class="hx:opacity-50 hx:text-sm hx:leading-7">
|
|
{{- range $tag := .Params.tags -}}
|
|
{{- with $.Site.GetPage (printf "/tags/%s" $tag) -}}
|
|
<a class="hx:inline-block hx:mr-2" href="{{ .RelPermalink }}">#{{ .Title }}</a>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</p> |