20 lines
429 B
HTML
Executable File
20 lines
429 B
HTML
Executable File
{{- define "title" -}}
|
|
{{ .Title }} • {{ .Site.Title }}
|
|
{{- end -}}
|
|
|
|
{{ define "main" }}
|
|
<main id="list">
|
|
{{- with .Content -}}
|
|
<div class="content row">
|
|
<div class="col-xs-12">
|
|
{{ . }}
|
|
</div>
|
|
</div>
|
|
{{- end -}}
|
|
<ul class="list-unstyled row">
|
|
{{- range .Pages -}}
|
|
{{- .Render "li" -}}
|
|
{{- end -}}
|
|
</ul>
|
|
</main>
|
|
{{ end }} |