2451b194dc
For better i18n support Fixes archive page path Remove tag cloud term exclusion closes https://github.com/CaiJimmy/hugo-theme-stack/issues/8
25 lines
946 B
HTML
25 lines
946 B
HTML
<footer class="article-footer">
|
|
{{ with $tags := .Params.Tags }}
|
|
<section class="article-tags">
|
|
{{ range $tags }}
|
|
<a href="{{ printf `tags/%s` (. | urlize) | relLangURL }}">{{ . | humanize }}</a>
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ if and (.Site.Params.article.license.enabled) (not (eq .Params.license false)) }}
|
|
<section class="article-copyright">
|
|
{{ (resources.Get "icons/copyright.svg").Content | safeHTML }}
|
|
<span>{{ default .Site.Params.article.license.default .Params.license }}</span>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{- if ne .Lastmod .Date -}}
|
|
<section class="article-time">
|
|
{{ (resources.Get "icons/clock.svg").Content | safeHTML }}
|
|
<span class="article-time--modified">
|
|
{{ T "lastUpdatedOn" (.Lastmod.Format ( or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04 MST" )) }}
|
|
</span>
|
|
</section>
|
|
{{- end -}}
|
|
</footer> |