vanilla-hugo/layouts/partials/post.html

28 lines
1.1 KiB
HTML
Raw Normal View History

<li>
{{- $scratch := newScratch -}}
{{- if .seriesName -}}
{{- partial "nameinseries" (dict "page" .page "scratch" $scratch) -}}
{{- else -}}
{{- $scratch.Set "name" (.page.Title) -}}
{{- end -}}
<a href="{{ .page.Permalink }}" class="post-title">{{ if .page.Params.favorite }}{{ partial "icon.html" "star" }}{{ end }} {{ $scratch.Get "name" }}</a>
{{ if (not (eq .page.WordCount 0)) }}
<p class="post-wordcount">{{ i18n "nWords" .page.WordCount }}, {{ i18n "nMinutesToRead" .page.ReadingTime }}.</p>
2023-01-31 18:54:08 -08:00
{{ end }}
{{ if .page.Params.status }}
2023-01-31 18:54:08 -08:00
<p class="post-status">
{{ partial "seriesstatus.html" .page.Params.status }}
2023-01-31 18:54:08 -08:00
</p>
{{ end }}
<p class="post-preview">{{ .page.Summary }} {{ if .page.Truncated }}...{{ end }}</p>
{{- if .linkSeries -}}
{{- $term := index (.page.GetTerms "series") 0 -}}
{{- with $term -}}
<p class="series-link">
{{- partial "icon.html" "corner-down-right" -}}
{{- i18n "latestInSeries" }} <a href="{{ $term.Permalink }}">{{ $term.Title }}</a>
</p>
{{- end -}}
{{- end }}
</li>