hugo-theme-hilfe/layouts/posts/list.html

48 lines
1.2 KiB
HTML
Raw Normal View History

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