PaperModX/layouts/_default/list.html

108 lines
3.3 KiB
HTML
Raw Normal View History

{{- define "main" }}
2019-03-31 13:32:06 +01:00
{{- if (and site.Params.profileMode.enabled .IsHome) }}
{{- partial "index_profile.html" . }}
{{- else }} {{/* if not profileMode */}}
2020-08-27 15:07:45 +01:00
{{- if not .IsHome | and .Title }}
2020-08-27 15:07:45 +01:00
<header class="page-header">
{{- partial "breadcrumbs.html" . }}
<h1>
{{/* see: https://gohugo.io/variables/taxonomy/#taxonomy-terms-page-variables */}}
{{- if eq .Kind "term" -}}{{- .Data.Singular }}: {{ end -}}
{{ .Title -}}
</h1>
{{- if .Description }}
<div class="post-description">
{{ .Description | markdownify }}
</div>
{{- end }}
{{- partial "inline_links.html" . -}}
2020-08-27 15:07:45 +01:00
</header>
{{- end }}
2021-09-02 09:13:08 +01:00
{{- if .Content }}
2021-09-02 09:03:47 +01:00
<div class="post-content">
{{- if not (.Param "disableAnchoredHeadings") }}
{{- partial "anchored_headings.html" .Content -}}
{{- else }}{{ .Content }}{{ end }}
</div>
2021-09-02 09:13:08 +01:00
{{- end }}
2021-09-02 09:03:47 +01:00
2022-04-22 08:57:25 +01:00
{{- $pages := .Pages }}
{{- if .IsHome }}
{{/* get all regular pages instead of pages in a section */}}
{{- $pages = where site.RegularPages "Section" "in" site.Params.mainSections }}
2021-03-30 13:37:36 +01:00
{{- end }}
{{- $pages = where $pages "Params.hidden" "!=" true }}
{{/* related issue: https://github.com/gohugoio/hugo/issues/9003 */}}
{{ $paginator := "" }}
{{ if (.Param "paginate") }}
{{- $paginator = .Paginate $pages (.Param "paginate") }}
{{ else }}
{{- $paginator = .Paginate $pages }}
{{ end }}
{{- if and .IsHome site.Params.homeInfoParams (eq $paginator.PageNumber 1) }}
{{- partial "home_info.html" . }}
{{- end }}
2021-03-30 13:37:36 +01:00
{{- $term := .Data.Term }}
2020-03-09 15:56:13 +00:00
{{- range $index, $page := $paginator.Pages }}
2019-03-31 13:32:06 +01:00
2020-03-09 17:50:02 +00:00
{{- $class := "post-entry" }}
{{- $user_preferred := or site.Params.disableSpecial1stPost site.Params.homeInfoParams }}
{{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0) (not $user_preferred)) }}
2020-03-09 17:50:02 +00:00
{{- $class = "first-entry" }}
{{- else if $term }}
2020-03-09 17:50:02 +00:00
{{- $class = "post-entry tag-entry" }}
2020-03-09 15:56:13 +00:00
{{- end }}
2020-03-09 17:50:02 +00:00
<article class="{{ $class }}">
{{- $isHidden := (site.Params.cover.hidden | default site.Params.cover.hiddenInList) }}
{{- partial "cover.html" (dict "cxt" . "IsHome" true "isHidden" $isHidden) }}
2019-03-31 13:32:06 +01:00
<header class="entry-header">
<h2>
2021-03-30 13:37:36 +01:00
{{- .Title }}
{{- if .Draft }}<sup><span class="entry-isdraft">&nbsp;&nbsp;[Draft]</span></sup>{{- end }}
{{- if .Weight }}<sup><span class="entry-isdraft">&nbsp;&nbsp;[Pinned]</span></sup>{{- end }}
</h2>
2018-01-08 16:28:39 +00:00
</header>
2021-03-30 13:37:36 +01:00
{{- if (ne (.Param "hideSummary") true) }}
2019-03-31 13:32:06 +01:00
<section class="entry-content">
{{ if .Description }}
<p>{{ .Description | plainify | htmlUnescape }}</p>
{{ else }}
<p>{{ .Summary | plainify | htmlUnescape }}{{ if .Truncated }}...{{ end }}</p>
{{ end }}
2019-03-31 13:32:06 +01:00
</section>
{{- end }}
{{- if not (.Param "hideMeta") }}
2019-03-31 13:32:06 +01:00
<footer class="entry-footer">
2020-10-20 14:08:29 +01:00
{{- partial "post_meta.html" . -}}
2018-01-08 16:28:39 +00:00
</footer>
{{- end }}
<a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
2018-01-08 16:28:39 +00:00
</article>
2020-03-09 15:56:13 +00:00
{{- end }}
2019-03-31 13:32:06 +01:00
2020-03-09 15:56:13 +00:00
{{- if gt $paginator.TotalPages 1 }}
2019-03-31 13:32:06 +01:00
<footer class="page-footer">
2018-01-08 16:28:39 +00:00
<nav class="pagination">
2020-03-09 15:56:13 +00:00
{{- if $paginator.HasPrev }}
2020-12-05 14:42:55 +00:00
<a class="prev" href="{{ $paginator.Prev.URL | absURL }}">« {{ i18n "prev_page" }}</a>
2020-03-09 15:56:13 +00:00
{{- end }}
{{- if $paginator.HasNext }}
2020-12-05 14:42:55 +00:00
<a class="next" href="{{ $paginator.Next.URL | absURL }}">{{ i18n "next_page" }} »</a>
2020-03-09 15:56:13 +00:00
{{- end }}
2018-01-08 16:28:39 +00:00
</nav>
</footer>
2020-03-09 15:56:13 +00:00
{{- end }}
2021-03-30 13:37:36 +01:00
{{- end }}{{/* end profileMode */}}
{{- end }}{{- /* end main */ -}}