hugo-PaperMod/layouts/_default/list.html

74 lines
2.3 KiB
HTML
Raw Normal View History

{{- define "main" }}
2019-03-31 14:32:06 +02:00
{{- if (and .Site.Params.profileMode.enabled .IsHome) }}
{{- partial "index_profile.html" . }}
{{- else }} {{/* if not profileMode */}}
2020-08-27 16:07:45 +02:00
{{- if not .IsHome | and .Title }}
2020-08-27 16:07:45 +02:00
<header class="page-header">
<h1>{{ .Title }}</h1>
</header>
{{- end }}
{{- $pages := .RegularPages }}
{{- if .IsHome }}
{{- $pages = where site.RegularPages "Type" "in" site.Params.mainSections }}
{{- end}}
{{ $paginator := .Paginate $pages }}
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)) }}
{{- if .Site.Params.homeInfoParams | or .Site.Params.disableSpecial1stPost}}
{{- partial "home_info.html" . }}
{{- else}}
2020-03-09 18:50:02 +01:00
{{- $class = "first-entry" }}
{{- end }}
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 }}">
{{- if .Params.cover }}
<figure class="entry-cover">
<img src="{{ .Params.cover | absURL }}" alt="cover image for {{ .Title }}">
</figure>
{{- end }}
2019-03-31 14:32:06 +02:00
<header class="entry-header">
<h2>
{{ .Title }}
{{- if .Draft }}<div class="entry-isdraft"><sup>&nbsp;&nbsp;[draft]</sup></div>{{- end }}
</h2>
2018-01-08 17:28:39 +01:00
</header>
{{- if (ne .Site.Params.hideSummary true)}}
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>
{{- end }}
2019-03-31 14:32:06 +02:00
<footer class="entry-footer">
2019-08-19 22:12:49 +02:00
<time>{{ .Date.Format "January 2, 2006" }}</time>
{{- if $.Site.Params.ShowReadingTime }}&nbsp;·&nbsp;
{{- $default_txt := print .ReadingTime " " "min" }}
{{- i18n "read_time" .ReadingTime | default $default_txt }}{{ end }}
{{- if or .Params.author .Site.Params.author }}&nbsp;·&nbsp;{{- .Params.author | default .Site.Params.author }}{{ end }}
2018-01-08 17:28:39 +01:00
</footer>
<a class="entry-link" aria-label="post link to {{ .Title | plainify }}" 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 }}
2020-08-27 16:07:45 +02:00
{{end}}{{/* end profileMode */}}
{{- end }}{{- /* end main */ -}}