2020-08-25 01:27:51 +08: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 19:58:21 +08:00
|
|
|
{{ if .Site.Params.article.license.enabled }}
|
2020-08-25 01:27:51 +08:00
|
|
|
<section class="article-copyright">
|
|
|
|
{{ (resources.Get "icons/copyright.svg").Content | safeHTML }}
|
2020-09-06 19:58:21 +08:00
|
|
|
<span>{{ .Site.Params.article.license.default }}</span>
|
2020-08-25 01:27:51 +08:00
|
|
|
</section>
|
|
|
|
{{ end }}
|
|
|
|
</footer>
|