2020-08-24 13:27:51 -04:00
|
|
|
<footer class="article-footer">
|
|
|
|
{{ with $tags := .Params.Tags }}
|
|
|
|
<section class="article-tags">
|
|
|
|
{{ range $tags }}
|
|
|
|
<a href="/tags/{{ . | urlize }}">{{ . | humanize }}</a>
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
|
2020-09-06 06:56:44 -04:00
|
|
|
{{ if .Site.Params.article.defaultLicense }}
|
2020-08-24 13:27:51 -04:00
|
|
|
<section class="article-copyright">
|
|
|
|
{{ (resources.Get "icons/copyright.svg").Content | safeHTML }}
|
2020-09-06 06:56:44 -04:00
|
|
|
<span>{{ .Site.Params.article.defaultLicense }}</span>
|
2020-08-24 13:27:51 -04:00
|
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
</footer>
|