1
0
mirror of https://github.com/BBaoVanC/bobatheme.git synced 2025-06-28 08:07:30 -05:00
Files
archetypes
assets
data
exampleSite
i18n
layouts
_default
authors
partials
post-meta-item
post-metadata
author.html
full.html
series.html
short.html
taxonomy.html
seo-tags
additional-head.html
breadcrumb.html
comments.html
credit.html
description-or-summary.html
figure.html
head.html
icon.html
icon_code.html
latest-posts.html
page-list.html
pagination.html
remote_figure.html
rss-link.html
seo-description.html
series-box.html
share.html
top.html
series
shortcodes
taxonomy
home.html
robots.txt
static
.editorconfig
.gitignore
.gitmodules
LICENSE
README.md
config.yaml
theme.toml

20 lines
857 B
HTML

{{ if or .Date .Params.authors .IsTranslated .Site.Params.readingtime }}
<div class="post-metadata" aria-label="{{ i18n "aria_post_metadata" }}">
{{ if .Date }}
<span class="post-meta-item" aria-label="date">
{{ partial "icon.html" "calendar" }}
<time datetime="{{ .Date.Format "2006-01-02" }}" pubdate>
{{ i18n "long_date" (dict "Date" .Date "Data" .Site.Data) }}
</time>
</span>
{{ end }}
{{ partial "post-meta-item/authors.html" . }}
{{ partial "post-meta-item/translations.html" . }}
{{ partial "post-meta-item/readingtime.html" . }}
{{ partial "post-meta-item/series.html" . }}
{{ partial "post-meta-item/categories.html" . }}
{{ partial "post-meta-item/tags.html" . }}
</div>
{{ end }}