runtimeterror/layouts/partials/archive.html

31 lines
1 KiB
HTML
Raw Normal View History

2023-08-22 21:27:50 +00:00
{{ $pages := .Pages }}
{{ if .IsHome }}
{{ $pages = where site.RegularPages "Type" "in" site.Params.mainSections }}
{{ end }}
<header class="content__header">
{{ if .IsHome }}
2023-08-23 13:58:31 +00:00
<h1>{{ site.Params.indexTitle | markdownify }}</h1>
2023-08-22 21:27:50 +00:00
{{ else }}
2023-12-22 22:30:08 +00:00
<h1>{{ .Title | markdownify }}{{ if eq .Kind "term" }}&nbsp;<a target="_blank" href="feed.xml" aria-label="Category RSS"><i class="fa-solid fa-square-rss"></i></a>&nbsp;</h1>{{ end }}
2023-08-22 21:27:50 +00:00
{{ end }}
{{ .Content }}
</header>
2023-11-13 16:05:14 +00:00
{{- range (.Paginate $pages).Pages }}
{{- $postDate := .Date.Format "2006-01-02" }}
{{- $updateDate := .Lastmod.Format "2006-01-02" }}
2023-08-22 21:27:50 +00:00
<article class="post">
<header class="post__header">
<h1><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
<p class="post__meta">
2023-08-29 19:48:57 +00:00
<span class="date">["{{- $postDate }}"{{- if ne $postDate $updateDate }}, "{{ $updateDate }}"{{ end }}]</span>
2023-08-22 21:27:50 +00:00
</p>
</header>
<section class="post__summary">
{{ .Summary }}
</section>
<br>
</article>
2023-11-13 16:05:14 +00:00
{{ end }}
{{- template "_internal/pagination.html" . }}