2021-10-11 21:29:16 -05:00
|
|
|
{{ if or .Date .IsTranslated .Site.Params.wordcount .Site.Params.readingtime .Site.Params.repoURL }}
|
2021-10-09 18:08:27 -05:00
|
|
|
<div class="post-metadata">
|
|
|
|
{{ if .Date }}
|
2021-10-09 22:33:18 -05:00
|
|
|
<span class="post-meta-item">
|
2021-10-11 21:35:16 -05:00
|
|
|
{{ partial "icon.html" "calendar" }}
|
2021-10-09 18:08:27 -05:00
|
|
|
<time datetime="{{ .Date.Format "January 2, 2006" }}" pubdate>
|
2021-10-11 18:24:14 -05:00
|
|
|
{{ i18n "long_date" (dict "Date" .Date "Data" .Site.Data) }}
|
2021-10-09 18:08:27 -05:00
|
|
|
</time>
|
2021-10-10 19:03:15 -05:00
|
|
|
</span>
|
2021-10-09 18:08:27 -05:00
|
|
|
|
2021-10-10 19:03:15 -05:00
|
|
|
{{ if not .Site.Params.repoURL }}
|
|
|
|
{{ if ne .Lastmod .Date }}
|
|
|
|
<span class="post-meta-item">
|
2021-10-26 18:50:48 -05:00
|
|
|
{{ partial "icon.html" "pencil" }}
|
2021-10-09 18:08:27 -05:00
|
|
|
<time datetime="{{ .Lastmod.Format "2006-01-02" }}" pubdate>
|
2021-10-11 18:24:14 -05:00
|
|
|
{{ i18n "long_date" (dict "Date" .Lastmod "Data" .Site.Data) }}
|
2021-10-09 18:08:27 -05:00
|
|
|
</time>
|
|
|
|
{{ end }}
|
|
|
|
</span>
|
2021-10-10 19:03:15 -05:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
2021-10-11 20:50:09 -05:00
|
|
|
|
2021-10-27 19:39:25 -05:00
|
|
|
{{ with .Params.authors }}
|
2021-10-26 14:27:37 -05:00
|
|
|
<span class="post-meta-item">
|
2021-10-26 18:50:48 -05:00
|
|
|
{{ partial "icon.html" "user-circle" }}
|
2021-10-27 19:51:46 -05:00
|
|
|
{{ delimit . ", " }}
|
2021-10-26 14:27:37 -05:00
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
|
2021-10-11 20:50:09 -05:00
|
|
|
{{ if .IsTranslated }}
|
|
|
|
<span class="post-meta-item">
|
2021-10-26 18:50:48 -05:00
|
|
|
{{ partial "icon.html" "world" }}
|
2021-10-11 20:50:09 -05:00
|
|
|
{{ range .Translations }}
|
|
|
|
<a href="{{ .Permalink }}">{{ .Language }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
2021-10-09 18:08:27 -05:00
|
|
|
|
2021-10-22 23:05:51 -05:00
|
|
|
{{ if ne .Site.Params.readingtime false }}
|
2021-10-09 22:33:18 -05:00
|
|
|
<span class="post-meta-item">
|
2021-10-11 21:35:16 -05:00
|
|
|
{{ partial "icon.html" "clock" }}
|
2021-10-11 18:24:14 -05:00
|
|
|
{{ i18n "readingtime" .ReadingTime }}
|
2021-10-09 18:44:36 -05:00
|
|
|
</span>
|
|
|
|
{{ end }}
|
2021-10-09 18:08:27 -05:00
|
|
|
|
2021-10-10 19:03:15 -05:00
|
|
|
{{ if .Site.Params.repoURL }}
|
2021-10-09 22:17:24 -05:00
|
|
|
{{ with .GitInfo }}
|
2021-10-09 22:33:18 -05:00
|
|
|
<span class="post-meta-item">
|
2021-10-26 18:50:48 -05:00
|
|
|
{{ partial "icon.html" "branch" }}
|
2021-10-26 20:33:01 -05:00
|
|
|
<a href="{{ (printf "%s/blob/%s/content/%s" $.Site.Params.repoURL .Hash $.File.Path) | absURL }}" target="_blank" rel="noopener">
|
2021-10-09 22:17:24 -05:00
|
|
|
<code>{{ .AbbreviatedHash }}</code>
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
2021-10-10 19:03:15 -05:00
|
|
|
{{ end }}
|
2021-10-09 22:17:24 -05:00
|
|
|
|
2021-10-09 22:33:18 -05:00
|
|
|
<div class="tags">
|
|
|
|
{{ range (.GetTerms "tags") }}
|
|
|
|
<span class="post-meta-item">
|
2021-10-11 21:35:16 -05:00
|
|
|
{{ partial "icon.html" "tag" }}
|
2021-10-09 22:33:18 -05:00
|
|
|
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
2021-10-09 18:08:27 -05:00
|
|
|
</div>
|
|
|
|
{{ end }}
|