bobatheme/layouts/partials/post-metadata/series.html
BBaoVanC 7ac4908149
Remove langpicker and most of multilingual support
I didn't end up using it, and I don't want to maintain it anymore.
2023-03-20 18:29:58 -05:00

18 lines
599 B
HTML

<div class="post-metadata" aria-label="{{ i18n "aria_series_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 }}
</div>