2020-08-31 15:40:11 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
|
<content>
|
|
|
|
|
{{ if .Data.Singular }}
|
2023-02-09 16:56:09 -03:00
|
|
|
<h3 style="margin-bottom:0">{{ i18n "filtering-for" }} "{{ .Title }}"</h3>
|
2020-08-31 15:40:11 +02:00
|
|
|
{{ end }}
|
2020-10-01 16:12:16 +02:00
|
|
|
<ul class="blog-posts">
|
2020-08-31 15:40:11 +02:00
|
|
|
{{ range .Pages }}
|
|
|
|
|
<li>
|
|
|
|
|
<span>
|
|
|
|
|
<i>
|
|
|
|
|
<time datetime='{{ .Date.Format "2006-01-02" }}' pubdate>
|
2023-02-09 16:56:09 -03:00
|
|
|
{{ .Date.Format (default "2006-01-02" .Site.Params.dateFormat) }}
|
2020-08-31 15:40:11 +02:00
|
|
|
</time>
|
|
|
|
|
</i>
|
|
|
|
|
</span>
|
2023-02-01 15:06:05 -03:00
|
|
|
{{ if .Params.link }}
|
|
|
|
|
<a href="{{ .Params.link }}">{{ .Title }}</a>
|
|
|
|
|
{{ else }}
|
|
|
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
|
|
|
{{ end }}
|
2020-08-31 15:40:11 +02:00
|
|
|
</li>
|
|
|
|
|
{{ else }}
|
|
|
|
|
<li>
|
|
|
|
|
No posts yet
|
|
|
|
|
</li>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</ul>
|
|
|
|
|
{{ if .Data.Singular }}
|
|
|
|
|
{{else}}
|
2023-02-01 15:06:05 -03:00
|
|
|
<div>
|
|
|
|
|
{{ range .Site.Taxonomies.tags }}
|
|
|
|
|
<a class="blog-tags" href="{{ .Page.Permalink }}">#{{ .Page.Title }}</a>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</div>
|
|
|
|
|
{{ end }}
|
2020-08-31 15:40:11 +02:00
|
|
|
</content>
|
|
|
|
|
{{ end }}
|