2020-07-23 00:43:33 +02:00
|
|
|
{{ define "main" }}
|
2020-08-23 14:49:41 +02:00
|
|
|
|
|
|
|
{{ if .Site.Params.profileMode }}
|
|
|
|
<div class="profile">
|
|
|
|
<div class="profile_inner">
|
|
|
|
{{if .Site.Params.profileMode.imageUrl}}
|
|
|
|
<div>
|
|
|
|
<img src="{{ .Site.Params.profileMode.imageUrl}}" alt="{{ .Site.Params.profileMode.imageTitle}}" />
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
<h1>{{ if .Site.Params.profileMode.title }}{{.Site.Params.profileMode.title}}{{ else }}{{ .Site.Title }}{{end}}</h1>
|
2020-08-24 13:28:47 +02:00
|
|
|
{{- with .Site.Params.profileMode.socialIcons }}
|
|
|
|
<div class="social-icons">
|
|
|
|
{{ partial "social-icons.html" . }}
|
|
|
|
</div>
|
|
|
|
{{- end }}
|
2020-08-23 14:49:41 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{else}} {{/* if not profileMode */}}
|
|
|
|
|
2020-07-23 00:43:33 +02:00
|
|
|
{{ $isntDefault := not (or (eq (trim $.Site.Params.contentTypeName " ") "posts") (eq (trim $.Site.Params.contentTypeName " ") "")) }}
|
|
|
|
{{ $contentTypeName := cond $isntDefault (string $.Site.Params.contentTypeName) "posts" }}
|
|
|
|
|
|
|
|
{{ $PageContext := . }}
|
|
|
|
{{ if .IsHome }}
|
|
|
|
{{ $PageContext = .Site }}
|
|
|
|
{{ end }}
|
|
|
|
{{ $paginator := .Paginate (where $PageContext.RegularPages "Type" $contentTypeName) }}
|
|
|
|
|
|
|
|
{{- range $index, $page := $paginator.Pages }}
|
|
|
|
|
|
|
|
{{- $class := "post-entry" }}
|
2020-07-24 11:49:59 +02:00
|
|
|
{{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0)) }}
|
|
|
|
{{- if (eq $.Site.Params.homeInfoParams.enabled true) }}
|
|
|
|
{{- partial "homeInfo.html" . }}
|
|
|
|
{{else}}
|
2020-07-23 00:43:33 +02:00
|
|
|
{{- $class = "first-entry" }}
|
2020-07-24 11:49:59 +02:00
|
|
|
{{ end }}
|
2020-07-23 00:43:33 +02:00
|
|
|
{{- else if .Data.Term }}
|
|
|
|
{{- $class = "post-entry tag-entry" }}
|
|
|
|
{{- end }}
|
|
|
|
<article class="{{ $class }}">
|
|
|
|
<header class="entry-header">
|
2020-07-24 17:16:33 +02:00
|
|
|
<h2>
|
|
|
|
{{ .Title }}
|
2020-07-28 09:06:53 +02:00
|
|
|
{{- if .Draft }}<div class="entry-isdraft"><sup>  [draft]</sup></div>{{- end }}
|
2020-07-24 17:16:33 +02:00
|
|
|
</h2>
|
2020-07-23 00:43:33 +02:00
|
|
|
</header>
|
|
|
|
<section class="entry-content">
|
|
|
|
<p>{{ .Summary | plainify | htmlUnescape }}...</p>
|
|
|
|
</section>
|
|
|
|
<footer class="entry-footer">
|
|
|
|
<time>{{ .Date.Format "January 2, 2006" }}</time>
|
2020-07-26 15:45:58 +02:00
|
|
|
{{ 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 }}
|
2020-07-23 00:43:33 +02:00
|
|
|
</footer>
|
|
|
|
<a class="entry-link" href="{{ .Permalink }}"></a>
|
|
|
|
</article>
|
|
|
|
{{- end }}
|
|
|
|
|
|
|
|
{{- if gt $paginator.TotalPages 1 }}
|
|
|
|
<footer class="page-footer">
|
|
|
|
<nav class="pagination">
|
|
|
|
{{- if $paginator.HasPrev }}
|
2020-07-26 15:38:27 +02:00
|
|
|
<a class="prev" href="{{ $paginator.Prev.URL }}">« {{ i18n "prev_page" }}</a>
|
2020-07-23 00:43:33 +02: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-07-23 00:43:33 +02:00
|
|
|
{{- end }}
|
|
|
|
</nav>
|
|
|
|
</footer>
|
|
|
|
{{- end }}
|
2020-08-23 14:49:41 +02:00
|
|
|
{{end}}{{/* end profileMode */}}
|
2020-07-23 00:43:33 +02:00
|
|
|
{{ end }}{{/* end main */}}
|