2021-03-30 20:50:34 +00:00
|
|
|
{{ partial "header.html" . }}
|
|
|
|
|
2022-01-04 23:43:07 +00:00
|
|
|
<div class="header" style="background-color: whitesmoke; opacity: 100%">
|
|
|
|
<h1 style="color: gray(35)">{{ .Title }}</h1>
|
|
|
|
<h2 style="color: dimgrey">{{ .Site.Params.subtitle }}</h2>
|
2021-03-30 20:50:34 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="content">
|
|
|
|
{{ range ( .Paginate (where .Site.RegularPages "Type" "post")).Pages }}
|
|
|
|
{{ .Render "summary"}}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ partial "pagination.html" . }}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{ partial "footer.html" . }}
|