bunteshaus.de/themes/buha/layouts/partials/layout/section_list.html

12 lines
271 B
HTML
Raw Normal View History

2022-04-11 15:45:49 +02:00
{{ if ne .context.Content "" }}
2022-06-15 11:21:24 +02:00
<div>
2022-04-11 15:45:49 +02:00
{{ partial "snippets/content" (dict "content" .context.Content) }}
2022-06-15 11:21:24 +02:00
</div>
2022-04-11 15:45:49 +02:00
{{ end }}
2022-06-15 11:21:24 +02:00
<div>
2022-04-11 15:45:49 +02:00
{{ range .context.Pages }}
<div>🗀 <a href="{{ .Permalink }}" class="underline">{{ .Title }}</a></div>
{{ end }}
2022-06-15 11:21:24 +02:00
</div>