forked from Bunteshaus/bunteshaus.de
12 lines
250 B
HTML
12 lines
250 B
HTML
{{ define "title" }}
|
|
<h1>{{ if i18n .Section }}{{ i18n .Section }}{{ else }}{{ "Misc" }}{{ end }}</h1>
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<article>
|
|
{{ range .Pages }}
|
|
<a href="{{ .Permalink }}">{{ .Name }}</a><br>
|
|
{{ end }}
|
|
</article>
|
|
{{ end }}
|