update index view

This commit is contained in:
Niklas Buschmann
2019-07-18 23:01:53 +02:00
parent 9815434e44
commit 52ab987649
3 changed files with 10 additions and 4 deletions

View File

@@ -1,9 +1,15 @@
{{ define "main" }}
{{ $Pages := .Pages }}
{{ if .IsHome }}
{{ $Pages = where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ end }}
<article>
<header><h1>{{ .Title | default "Posts" }}</h1></header>
<ul class="archive">
{{- range where site.RegularPages "Type" "in" site.Params.mainSections }}
{{- range $Pages }}
<li>
{{ if .Date }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006-01-02" }}</time>{{ end }}
<a href="{{ .Permalink }}">{{ .Title }}</a>
@@ -12,4 +18,4 @@
</ul>
</article>
{{ end }}
{{ end }}

View File

@@ -8,4 +8,4 @@
{{ .Content }}
</article>
{{ end }}
{{ end }}