12 lines
231 B
HTML
12 lines
231 B
HTML
|
{{ partial "header.html" . }}
|
||
|
<section class="article-list">
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
{{ range .Data.Pages }}
|
||
|
{{ if eq .Type "post"}}
|
||
|
<hr/>
|
||
|
{{ .Render "li" }}
|
||
|
{{ end }}
|
||
|
{{ end }}
|
||
|
</section>
|
||
|
{{ partial "footer.html" . }}
|