personal-blog/layouts/index.html

18 lines
371 B
HTML
Raw Normal View History

2021-03-30 20:50:34 +00:00
{{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke">
2021-03-30 20:50:34 +00:00
<h1>{{ .Title }}</h1>
<h2>{{ .Site.Params.subtitle }}</h2>
</div>
<div class="content">
{{ range ( .Paginate (where .Site.RegularPages "Type" "post")).Pages }}
{{ .Render "summary"}}
{{ end }}
{{ partial "pagination.html" . }}
</div>
{{ partial "footer.html" . }}