2020-10-21 16:23:05 +02:00
|
|
|
{{ define "main" }}
|
2020-11-09 12:36:28 +01:00
|
|
|
<div class="container">
|
|
|
|
<h1>{{ .RenderString .Title }}</h1>
|
2020-11-23 11:31:02 +01:00
|
|
|
<div class="container md">
|
2020-10-21 16:23:05 +02:00
|
|
|
{{ .Content }}
|
2020-11-23 11:31:02 +01:00
|
|
|
<ul>
|
|
|
|
{{ block "list" . }}
|
|
|
|
{{ range .Pages }}
|
|
|
|
<li><a href="{{ .URL }}">{{ .RenderString .Title }}</a></li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
2020-10-21 16:23:05 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|