mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-08-06 07:51:36 -05:00
Also move the Isso script tag from comments.html to the <head>, since it essentially needs to load on all pages. Fixes #94
19 lines
753 B
HTML
19 lines
753 B
HTML
{{ if or .Date .Params.authors .Site.Params.readingtime }}
|
|
<div class="page-metadata" aria-label="{{ i18n "aria_post_metadata" }}">
|
|
{{ if .Date }}
|
|
<span class="page-metadata-item" aria-label="date">
|
|
{{ partial "icon.html" "calendar" }}
|
|
{{ partial "time-element.html" .Date }}
|
|
</span>
|
|
{{ end }}
|
|
|
|
{{ partial "page-metadata/item/authors.html" . }}
|
|
{{ partial "page-metadata/item/readingtime.html" . }}
|
|
{{ partial "page-metadata/item/comments-counter.html" . }}
|
|
|
|
{{ partial "page-metadata/item/series.html" . }}
|
|
{{ partial "page-metadata/item/categories.html" . }}
|
|
{{ partial "page-metadata/item/tags.html" . }}
|
|
</div>
|
|
{{ end }}
|