2020-08-25 01:27:51 +08:00
|
|
|
<footer class="article-footer">
|
2020-09-18 06:00:39 +08:00
|
|
|
{{ partial "article/components/tags" . }}
|
2020-08-25 01:27:51 +08:00
|
|
|
|
2020-09-06 20:02:48 +08:00
|
|
|
{{ if and (.Site.Params.article.license.enabled) (not (eq .Params.license false)) }}
|
2020-08-25 01:27:51 +08:00
|
|
|
<section class="article-copyright">
|
2020-10-10 06:27:56 +08:00
|
|
|
{{ partial "helper/icon" "copyright" }}
|
2021-07-26 01:50:52 +08:00
|
|
|
<span>{{ default .Site.Params.article.license.default .Params.license | markdownify }}</span>
|
2020-08-25 01:27:51 +08:00
|
|
|
</section>
|
|
|
|
{{ end }}
|
2020-09-07 02:26:18 +08:00
|
|
|
|
2020-09-07 02:33:23 +08:00
|
|
|
{{- if ne .Lastmod .Date -}}
|
2020-09-07 02:26:18 +08:00
|
|
|
<section class="article-time">
|
2020-10-10 06:27:56 +08:00
|
|
|
{{ partial "helper/icon" "clock" }}
|
2020-09-09 23:17:09 +08:00
|
|
|
<span class="article-time--modified">
|
2020-12-19 08:41:26 +08:00
|
|
|
{{ T "article.lastUpdatedOn" }} {{ .Lastmod.Format ( or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" ) }}
|
2020-09-09 23:17:09 +08:00
|
|
|
</span>
|
2020-09-07 02:26:18 +08:00
|
|
|
</section>
|
|
|
|
{{- end -}}
|
2021-07-26 01:50:52 +08:00
|
|
|
</footer>
|