42 lines
1.1 KiB
HTML
42 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
{{ partial "header.html" . }}
|
||
|
<body>
|
||
|
<div class="content">
|
||
|
{{ partial "head.html" . }}
|
||
|
|
||
|
|
||
|
|
||
|
<main class="list">
|
||
|
<div class="site-description">
|
||
|
{{- if isset .Site.Params "subtitle" -}}
|
||
|
<p>{{ .Site.Params.Subtitle | markdownify }}</p>
|
||
|
{{- end -}}
|
||
|
|
||
|
|
||
|
</div>
|
||
|
<h1>Blog</h1>
|
||
|
{{ $pages := where (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) ".Params.startpage" "==" true }}
|
||
|
{{ $paginator := .Paginate (where $pages "Params.hidden" "ne" true) }}
|
||
|
{{ range $paginator.Pages }}
|
||
|
<section class="list-item">
|
||
|
<h2 class="title"><a href="{{ .RelPermalink }}">{{.Title}}</a></h2>
|
||
|
<time>{{ dateFormat "Jan 2, 2006" .Date }}{{ if .Draft }} <span class="draft-label">DRAFT</span> {{ end }}</time>
|
||
|
<br><div class="description">
|
||
|
{{ if isset .Params "description" }}
|
||
|
{{ .Description }}
|
||
|
{{ else }}
|
||
|
{{ .Summary }}…
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
<a href="{{ .RelPermalink }}">Read more ⟶</a>
|
||
|
</section>
|
||
|
{{ end }}
|
||
|
{{ template "partials/paginator.html" . }}
|
||
|
</main>
|
||
|
{{ partial "footer.html" . }}
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
</html>
|