This repository has been archived on 2025-05-12. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
hack13-blog/themes/hacksite/layouts/index.html
2021-06-25 19:11:18 -04:00

17 lines
No EOL
333 B
HTML

{{ partial "header.html" . }}
<div class="header">
<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" . }}