2019-07-08 07:05:23 +02:00
|
|
|
{{ define "main" }}
|
2019-09-01 08:32:49 +02:00
|
|
|
<header>
|
|
|
|
<h1>{{.Title}}</h1>
|
|
|
|
</header>
|
|
|
|
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
|
|
|
|
{{.Content }}
|
2019-12-10 07:17:15 +01:00
|
|
|
{{ range .Pages }}
|
2019-09-01 08:32:49 +02:00
|
|
|
<article>
|
|
|
|
<a href="{{ .Permalink }}">
|
|
|
|
{{.Title}}
|
|
|
|
</a>
|
|
|
|
— {{ .PublishDate.Format "2006-01-02" }}
|
|
|
|
{{ with .Params.categories }}
|
|
|
|
{{ range . }}
|
|
|
|
— <a href="{{ "categories" | absURL}}/{{ . | urlize }}">{{ . }}</a>
|
|
|
|
{{ end }}
|
2019-07-31 18:43:51 +02:00
|
|
|
{{ end }}
|
2019-09-01 08:32:49 +02:00
|
|
|
</article>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
2019-07-08 07:05:23 +02:00
|
|
|
{{ end }}
|
|
|
|
|