forked from neff/neff-steindesign.de
21 lines
482 B
HTML
Executable File
21 lines
482 B
HTML
Executable File
{{- define "title" -}}
|
|
{{ .Title }} • {{ .Site.Title }}
|
|
{{- end -}}
|
|
|
|
{{ define "main" }}
|
|
<main id="list">
|
|
<h1 class="padding">{{ .Title }}</h1>
|
|
{{- with .Content -}}
|
|
<div class="content flex column">
|
|
<div class="padding">
|
|
{{ . }}
|
|
</div>
|
|
</div>
|
|
{{- end -}}
|
|
<ul class="list-unstyled flex row">
|
|
{{- range .Pages -}}
|
|
{{- .Render "li" -}}
|
|
{{- end -}}
|
|
</ul>
|
|
</main>
|
|
{{ end }} |