2021-11-14 18:57:23 -06:00
|
|
|
<div class="post">
|
|
|
|
<h2 class="post-title">
|
|
|
|
{{ with .Parent.Params.icon }}{{ partial "icon.html" . }}{{ end }}
|
|
|
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
|
|
|
{{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<div class="post-metadata">
|
2021-11-22 01:57:35 -06:00
|
|
|
{{ partial "post-meta-item/translations.html" . }}
|
2021-11-14 18:57:23 -06:00
|
|
|
|
|
|
|
{{ if ne .Site.Params.readingtime false }}
|
|
|
|
<span class="post-meta-item">
|
|
|
|
{{ partial "icon.html" "clock" }}
|
|
|
|
{{ $readingtime := 0 }}
|
|
|
|
{{ range .Data.Pages }}
|
|
|
|
{{ $readingtime = (add $readingtime .ReadingTime) }}
|
|
|
|
{{ end }}
|
|
|
|
{{ i18n "readingtime" $readingtime }}
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
|
2021-11-22 01:57:35 -06:00
|
|
|
{{ partial "post-meta-item/viewsource.html" . }}
|
2021-11-14 18:57:23 -06:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="post-description">
|
2021-11-22 00:42:08 -06:00
|
|
|
{{ partial "description-or-summary.html" . }}
|
2021-11-14 18:57:23 -06:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="series-pages">
|
|
|
|
<ul>
|
|
|
|
{{ range .Data.Pages.Reverse }}
|
2021-11-22 01:57:35 -06:00
|
|
|
<li>{{ .Render "summary/post" }}</li>
|
2021-11-14 18:57:23 -06:00
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|