hugo-PaperMod/layouts/_default/list.html

51 lines
1.6 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 }}
{{- if .Title }}
<header class="page-header"><h1>{{ .Title }}</h1></header>{{ $scope = . }}
{{ end }}
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 }}
2020-07-28 09:06:53 +02:00
{{- if .Draft }}<div class="entry-isdraft"><sup>&nbsp&nbsp[draft]</sup></div>{{- end }}
</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>
{{ if $.Site.Params.ShowReadingTime }} .
{{ .ReadingTime }}{{ $.Site.Params.MinuteReadingTime | default "min read" }}{{ end }}
2020-07-26 15:47:04 +02:00
{{ if or .Params.author .Site.Params.author }} . {{ .Params.author | default .Site.Params.author }}{{ end }}
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 }}
2020-07-26 15:38:27 +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 }}
2020-07-26 15:38:27 +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 */}}