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