20 lines
721 B
HTML
20 lines
721 B
HTML
<footer class="article-meta article-footer">
|
|
{{ partial "article/components/tags" . }}
|
|
|
|
{{ if and (.Site.Params.article.license.enabled) (not (eq .Params.license false)) }}
|
|
<section class="article-copyright inline-meta">
|
|
{{ partial "helper/icon" "copyright" }}
|
|
<span>{{ default .Site.Params.article.license.default .Params.license | markdownify }}</span>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{- if ne .Lastmod .Date -}}
|
|
<section class="article-lastmod inline-meta">
|
|
{{ partial "helper/icon" "clock" }}
|
|
<span>
|
|
{{ T "article.lastUpdatedOn" }} {{ .Lastmod | time.Format .Site.Params.dateFormat.lastUpdated }}
|
|
</span>
|
|
</section>
|
|
{{- end -}}
|
|
</footer>
|