forked from Bunteshaus/bunteshaus.de
13 lines
296 B
HTML
13 lines
296 B
HTML
{{ define "title" }}
|
|
<h1>{{ if i18n .Section }}{{ i18n .Section }}{{ else }}{{ "Misc" }}{{ end }}</h1>
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{ partial "debug" (dict "context" . ) }}
|
|
<article>
|
|
{{ range .Pages }}
|
|
<a href="{{ .Permalink }}">{{ .Name }}</a><br>
|
|
{{ end }}
|
|
</article>
|
|
{{ end }}
|