2019-07-08 07:05:23 +02:00
|
|
|
{{ define "main" }}
|
2019-08-25 17:54:11 +02:00
|
|
|
<header>
|
2021-10-29 22:34:24 +02:00
|
|
|
<h2>{{.Title}}</h2>
|
2020-01-15 17:42:04 +01:00
|
|
|
</header>
|
2019-08-25 17:54:11 +02:00
|
|
|
<!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
|
|
|
|
<article>
|
|
|
|
<header>
|
|
|
|
{{.Content }}
|
|
|
|
</header>
|
2020-01-15 17:42:04 +01:00
|
|
|
<article class="posts-list">
|
2019-08-25 17:54:11 +02:00
|
|
|
{{ range .Pages.ByPublishDate.Reverse }}
|
|
|
|
<article>
|
|
|
|
<a href="{{ .Permalink }}">
|
|
|
|
{{.Title}}
|
|
|
|
</a>
|
|
|
|
{{ partial "lists-footer.html" . }}
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
2019-09-01 08:32:49 +02:00
|
|
|
</article>
|
2019-08-25 17:54:11 +02:00
|
|
|
</article>
|
2019-07-08 07:05:23 +02:00
|
|
|
{{ end }}
|