Files
rezepte/hugo/layouts/_default/list.html
Elias Kohout 699d2f9bcf
Some checks are pending
Build and Push Docker Container / build-and-push (push) Waiting to run
cleanup
2025-03-15 01:01:27 +01:00

15 lines
336 B
HTML

{{ define "title" -}}
{{ if eq .Kind "term" }}🏷️ {{end}}{{ .Title | title }}
{{- end }}
{{ define "main" -}}
{{ .Content }}
<ul>
{{- range.Pages }}
<li class="no-before">
<a class="no-underline" href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{- end }}
</ul>
{{- end }}