hugo-PaperMod/layouts/_default/list.html

42 lines
1.1 KiB
HTML
Raw Normal View History

{{ define "main" }}
2019-03-31 14:32:06 +02:00
2020-03-09 18:50:02 +01:00
{{- $scope := .Site }}
2020-03-09 16:56:13 +01:00
{{- $paginator := .Paginate (where $scope.RegularPages ".Params.type" "!=" "page") }}
2019-03-31 14:32:06 +02:00
2020-03-09 16:56:13 +01:00
{{- range $index, $page := $paginator.Pages }}
2019-03-31 14:32:06 +02:00
2020-03-09 18:50:02 +01:00
{{- $class := "post-entry" }}
2020-03-09 16:56:13 +01:00
{{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0)) }}
2020-03-09 18:50:02 +01:00
{{- $class = "first-entry" }}
2020-03-09 16:56:13 +01:00
{{- else if .Data.Term }}
2020-03-09 18:50:02 +01:00
{{- $class = "post-entry tag-entry" }}
2020-03-09 16:56:13 +01:00
{{- end }}
2020-03-09 18:50:02 +01:00
<article class="{{ $class }}">
2019-03-31 14:32:06 +02:00
<header class="entry-header">
<h2>{{ .Title }}</h2>
2018-01-08 17:28:39 +01:00
</header>
2019-03-31 14:32:06 +02:00
<section class="entry-content">
2020-07-20 16:23:30 +02:00
<p>{{ .Summary | plainify | htmlUnescape }}...</p>
2019-03-31 14:32:06 +02:00
</section>
<footer class="entry-footer">
2019-08-19 22:12:49 +02:00
<time>{{ .Date.Format "January 2, 2006" }}</time>
2018-01-08 17:28:39 +01:00
</footer>
2019-03-31 14:32:06 +02:00
<a class="entry-link" href="{{ .Permalink }}"></a>
2018-01-08 17:28:39 +01:00
</article>
2020-03-09 16:56:13 +01:00
{{- end }}
2019-03-31 14:32:06 +02:00
2020-03-09 16:56:13 +01:00
{{- if gt $paginator.TotalPages 1 }}
2019-03-31 14:32:06 +02:00
<footer class="page-footer">
2018-01-08 17:28:39 +01:00
<nav class="pagination">
2020-03-09 16:56:13 +01:00
{{- if $paginator.HasPrev }}
2019-04-01 10:00:48 +02:00
<a class="prev" href="{{ $paginator.Prev.URL }}">← {{ i18n "prev_page" }}</a>
2020-03-09 16:56:13 +01:00
{{- end }}
{{- if $paginator.HasNext }}
2019-04-01 10:00:48 +02:00
<a class="next" href="{{ $paginator.Next.URL }}">{{ i18n "next_page" }} →</a>
2020-03-09 16:56:13 +01:00
{{- end }}
2018-01-08 17:28:39 +01:00
</nav>
</footer>
2020-03-09 16:56:13 +01:00
{{- end }}
2019-03-31 14:32:06 +02:00
{{ end }}{{/* end main */}}