23 lines
881 B
HTML
23 lines
881 B
HTML
<footer class="article-footer">
|
|
{{ with $tags := .Params.Tags }}
|
|
<section class="article-tags">
|
|
{{ range $tags }}
|
|
<a href="/tags/{{ . | urlize }}">{{ . | 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">Last updated on {{ .Lastmod.Format ( or .Site.Params.dateFormat "Jan 02, 2006 15:04 MST" ) }}</span>
|
|
</section>
|
|
{{- end -}}
|
|
</footer> |