bunteshaus.de/themes/buha/layouts/_default.old/misc.html

13 lines
296 B
HTML
Raw Normal View History

2022-04-06 00:03:31 +02:00
{{ define "title" }}
2022-04-08 13:22:50 +02:00
<h1>{{ if i18n .Section }}{{ i18n .Section }}{{ else }}{{ "Misc" }}{{ end }}</h1>
2022-04-06 00:03:31 +02:00
{{ end }}
{{ define "main" }}
2022-04-09 01:36:05 +02:00
{{ partial "debug" (dict "context" . ) }}
2022-04-06 00:03:31 +02:00
<article>
{{ range .Pages }}
<a href="{{ .Permalink }}">{{ .Name }}</a><br>
{{ end }}
</article>
2022-04-07 16:31:15 +02:00
{{ end }}