2018-08-31 01:18:19 +02:00
|
|
|
{{ partial "header.html" . }}
|
2018-10-09 10:40:10 +02:00
|
|
|
<section id="content" role="main">
|
2018-08-31 01:18:19 +02:00
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
{{ range .Data.Pages }}
|
|
|
|
{{ if eq .Type "post"}}
|
|
|
|
<hr/>
|
|
|
|
{{ .Render "li" }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
|
|
|
{{ partial "footer.html" . }}
|