18 lines
327 B
HTML
18 lines
327 B
HTML
|
{{ partial "header.html" . }}
|
||
|
|
||
|
<div class="header">
|
||
|
<h1>{{ .Title }}</h1>
|
||
|
<h2>{{ .Site.Params.subtitle }}</h2>
|
||
|
</div>
|
||
|
|
||
|
<div class="content">
|
||
|
{{ range ( .Paginate (where .Data.Pages "Type" "post")).Pages }}
|
||
|
{{ .Render "summary"}}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ partial "pagination.html" . }}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
{{ partial "footer.html" . }}
|