2020-09-23 03:22:32 -04:00
|
|
|
{{- define "main" }}
|
2019-03-31 08:32:06 -04:00
|
|
|
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- if (and .Site.Params.profileMode.enabled .IsHome) }}
|
2020-09-23 08:53:57 -04:00
|
|
|
{{- partial "index_profile.html" . }}
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- else }} {{/* if not profileMode */}}
|
2020-08-27 10:07:45 -04:00
|
|
|
|
2020-09-11 14:36:58 -04:00
|
|
|
{{- if not .IsHome | and .Title }}
|
2020-08-27 10:07:45 -04:00
|
|
|
<header class="page-header">
|
|
|
|
<h1>{{ .Title }}</h1>
|
|
|
|
</header>
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- end }}
|
2020-09-19 07:59:05 -04:00
|
|
|
|
2020-10-13 08:47:39 -04:00
|
|
|
{{- $pages := union .RegularPages .Sections }}
|
2020-09-11 14:36:58 -04:00
|
|
|
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- if .IsHome }}
|
|
|
|
{{- $pages = where site.RegularPages "Type" "in" site.Params.mainSections }}
|
|
|
|
{{- end}}
|
2020-09-11 14:36:58 -04:00
|
|
|
|
|
|
|
{{ $paginator := .Paginate $pages }}
|
2020-10-10 10:04:13 -04:00
|
|
|
{{ $term := .Data.Term}}
|
2020-03-09 11:56:13 -04:00
|
|
|
{{- range $index, $page := $paginator.Pages }}
|
2019-03-31 08:32:06 -04:00
|
|
|
|
2020-03-09 13:50:02 -04:00
|
|
|
{{- $class := "post-entry" }}
|
2020-03-09 11:56:13 -04:00
|
|
|
{{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0)) }}
|
2020-09-19 07:59:05 -04:00
|
|
|
{{- if .Site.Params.homeInfoParams | or .Site.Params.disableSpecial1stPost}}
|
2020-09-23 08:53:57 -04:00
|
|
|
{{- partial "home_info.html" . }}
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- else}}
|
2020-03-09 13:50:02 -04:00
|
|
|
{{- $class = "first-entry" }}
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- end }}
|
2020-10-10 10:04:13 -04:00
|
|
|
{{- else if $term }}
|
2020-03-09 13:50:02 -04:00
|
|
|
{{- $class = "post-entry tag-entry" }}
|
2020-03-09 11:56:13 -04:00
|
|
|
{{- end }}
|
2020-03-09 13:50:02 -04:00
|
|
|
<article class="{{ $class }}">
|
2020-10-22 07:12:26 -04:00
|
|
|
{{- partial "cover.html" (dict "cxt" . "IsHome" true) }}
|
2019-03-31 08:32:06 -04:00
|
|
|
<header class="entry-header">
|
2020-07-24 11:16:33 -04:00
|
|
|
<h2>
|
|
|
|
{{ .Title }}
|
2020-09-22 04:18:38 -04:00
|
|
|
{{- if .Draft }}<div class="entry-isdraft"><sup> [draft]</sup></div>{{- end }}
|
2020-07-24 11:16:33 -04:00
|
|
|
</h2>
|
2018-01-08 11:28:39 -05:00
|
|
|
</header>
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- if (ne .Site.Params.hideSummary true)}}
|
2019-03-31 08:32:06 -04:00
|
|
|
<section class="entry-content">
|
2020-07-20 10:23:30 -04:00
|
|
|
<p>{{ .Summary | plainify | htmlUnescape }}...</p>
|
2019-03-31 08:32:06 -04:00
|
|
|
</section>
|
2020-09-23 03:22:32 -04:00
|
|
|
{{- end }}
|
2019-03-31 08:32:06 -04:00
|
|
|
<footer class="entry-footer">
|
2020-10-20 09:08:29 -04:00
|
|
|
{{- partial "post_meta.html" . -}}
|
2018-01-08 11:28:39 -05:00
|
|
|
</footer>
|
2020-09-06 12:16:58 -04:00
|
|
|
<a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
|
2018-01-08 11:28:39 -05:00
|
|
|
</article>
|
2020-03-09 11:56:13 -04:00
|
|
|
{{- end }}
|
2019-03-31 08:32:06 -04:00
|
|
|
|
2020-03-09 11:56:13 -04:00
|
|
|
{{- if gt $paginator.TotalPages 1 }}
|
2019-03-31 08:32:06 -04:00
|
|
|
<footer class="page-footer">
|
2018-01-08 11:28:39 -05:00
|
|
|
<nav class="pagination">
|
2020-03-09 11:56:13 -04:00
|
|
|
{{- if $paginator.HasPrev }}
|
2020-12-05 09:42:55 -05:00
|
|
|
<a class="prev" href="{{ $paginator.Prev.URL | absURL }}">« {{ i18n "prev_page" }}</a>
|
2020-03-09 11:56:13 -04:00
|
|
|
{{- end }}
|
|
|
|
{{- if $paginator.HasNext }}
|
2020-12-05 09:42:55 -05:00
|
|
|
<a class="next" href="{{ $paginator.Next.URL | absURL }}">{{ i18n "next_page" }} »</a>
|
2020-03-09 11:56:13 -04:00
|
|
|
{{- end }}
|
2018-01-08 11:28:39 -05:00
|
|
|
</nav>
|
|
|
|
</footer>
|
2020-03-09 11:56:13 -04:00
|
|
|
{{- end }}
|
2020-08-27 10:07:45 -04:00
|
|
|
{{end}}{{/* end profileMode */}}
|
2020-10-22 07:12:26 -04:00
|
|
|
{{- end }}{{- /* end main */ -}}
|