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 08:02:48 -04:00
|
|
|
{{ if and (.Site.Params.article.license.enabled) (not (eq .Params.license false)) }}
|
2020-08-24 13:27:51 -04:00
|
|
|
<section class="article-copyright">
|
|
|
|
{{ (resources.Get "icons/copyright.svg").Content | safeHTML }}
|
2020-09-06 08:02:48 -04:00
|
|
|
<span>{{ default .Site.Params.article.license.default .Params.license }}</span>
|
2020-08-24 13:27:51 -04:00
|
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
</footer>
|