2020-01-12 15:33:02 +01:00
|
|
|
{{ define "main" }}
|
2022-01-06 13:58:10 +01:00
|
|
|
{{ range .Paginator.Pages }}
|
|
|
|
<article class="gdoc-markdown gdoc-post">
|
|
|
|
<header class="gdoc-post__header">
|
|
|
|
<h1 class="gdoc-post__title"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h1>
|
|
|
|
</header>
|
|
|
|
<section>
|
|
|
|
{{ .Summary }}
|
|
|
|
</section>
|
|
|
|
<div class="gdoc-post__readmore">
|
|
|
|
{{ if .Truncated }}
|
|
|
|
<a
|
|
|
|
class="flex-inline align-center fake-link"
|
2022-01-23 13:21:44 +01:00
|
|
|
title="{{ i18n "posts_read_more" }}"
|
2022-01-06 13:58:10 +01:00
|
|
|
href="{{ .RelPermalink }}"
|
|
|
|
>
|
2022-01-23 13:21:44 +01:00
|
|
|
{{ i18n "posts_read_more" }}
|
2022-01-12 21:40:57 +01:00
|
|
|
<i class="gdoc-icon">gdoc_arrow_right_alt</i>
|
2022-01-06 13:58:10 +01:00
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2021-09-01 10:18:00 +02:00
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
<footer class="gdoc-post__footer">
|
2022-02-03 10:58:37 +01:00
|
|
|
<div class="flex flex-wrap align-center gdoc-post__meta">
|
|
|
|
{{ partial "posts/metadata.html" . }}
|
|
|
|
</div>
|
2022-01-06 13:58:10 +01:00
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
{{ end }}
|
2020-01-12 15:33:02 +01:00
|
|
|
{{ end }}
|
2021-09-01 10:18:00 +02:00
|
|
|
|
|
|
|
{{ define "post-tag" }}
|
2022-01-06 13:58:10 +01:00
|
|
|
<span class="gdoc-post__tag">
|
2021-09-01 10:18:00 +02:00
|
|
|
<span class="gdoc-button">
|
2022-01-06 13:58:10 +01:00
|
|
|
<a
|
|
|
|
class="gdoc-button__link"
|
|
|
|
href="{{ .page.RelPermalink }}"
|
|
|
|
title="All posts tagged with '{{ .name }}'"
|
|
|
|
>
|
|
|
|
{{ .name }}
|
|
|
|
</a>
|
2021-09-01 10:18:00 +02:00
|
|
|
</span>
|
2022-01-06 13:58:10 +01:00
|
|
|
</span>
|
2021-09-01 10:18:00 +02:00
|
|
|
{{ end }}
|