Show post count in series metadata

This commit is contained in:
BBaoVanC 2021-11-23 13:58:48 -06:00
parent 55bbfa90e4
commit e982824031
Signed by: bbaovanc
GPG Key ID: 18089E4E3CCF1D3A
3 changed files with 23 additions and 16 deletions

View File

@ -5,22 +5,7 @@
{{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
</h2>
<div class="post-metadata">
{{ partial "post-meta-item/translations.html" . }}
{{ 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 }}
{{ partial "post-meta-item/viewsource.html" . }}
</div>
{{ partial "post-metadata/series.html" . }}
<div class="post-description">
{{ partial "description-or-summary.html" . }}

View File

@ -0,0 +1,20 @@
<div class="post-metadata">
<span class="post-meta-item">
{{ partial "icon.html" "newspaper" }}
{{ i18n "post_count" (len .Data.Pages) }}
</span>
{{ 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 }}
{{ partial "post-meta-item/translations.html" . }}
{{ partial "post-meta-item/viewsource.html" . }}
</div>

View File

@ -5,6 +5,8 @@
{{ partial "rss-link.html" . }}
</h1>
{{ partial "post-metadata/series.html" . }}
{{ partial "description-or-summary.html" . }}
<div class="page-list">