bunteshaus.de/themes/buha/layouts/tools/list.html

20 lines
408 B
HTML
Raw Normal View History

2022-06-17 17:45:53 +02:00
{{ define "intro" }}
{{ if ne .Content "" }}
{{ partial "snippets/content" (dict "content" .Content) }}
{{ end }}
{{ end }}
{{ define "content" }}
<div>
{{ range .Pages }}
<div>🗀 <a href="{{ .Permalink }}" class="underline">{{ .Title }}</a></div>
{{ end }}
</div>
<div>
{{ range .Resources }}
<div>🗀 <a href="{{ .Permalink }}">{{ . }}</a></div>
{{ end }}
</div>
{{ end }}