2019-07-30 12:56:41 +02:00
|
|
|
{{ define "main" }}
|
2019-08-25 17:54:11 +02:00
|
|
|
<main class="container">
|
|
|
|
<header>
|
2021-10-29 22:34:24 +02:00
|
|
|
<h2>{{.Title}}</h2>
|
2019-08-25 17:54:11 +02:00
|
|
|
</header>
|
2022-11-14 18:21:38 +01:00
|
|
|
<!-- "{{.Content}}" pulls from the markdown content of the corresponding
|
|
|
|
_index.md -->
|
2019-08-25 17:54:11 +02:00
|
|
|
{{.Content}}
|
2024-09-02 19:58:59 +02:00
|
|
|
<section class="grid posts-list">
|
2022-11-14 18:21:38 +01:00
|
|
|
<!-- Ranges through content/posts/*.md in reverse order, then displays
|
|
|
|
the post title, the date and categories (list-footer template) -->
|
2021-01-30 23:15:48 +01:00
|
|
|
{{ range .Pages.ByPublishDate.Reverse }}
|
2020-01-15 17:42:04 +01:00
|
|
|
<article>
|
2019-08-25 17:54:11 +02:00
|
|
|
<a href="{{.Permalink}}">{{.Title}}</a>
|
|
|
|
{{ partial "lists-footer.html" . }}
|
2020-01-15 17:42:04 +01:00
|
|
|
</article>
|
2019-08-25 17:54:11 +02:00
|
|
|
{{ end }}
|
2024-09-02 19:58:59 +02:00
|
|
|
</section>
|
2019-08-25 17:54:11 +02:00
|
|
|
</main>
|
2019-07-30 12:56:41 +02:00
|
|
|
{{ end }}
|