16 lines
481 B
HTML
16 lines
481 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 .Site.Params.postLicense }}
|
|
<section class="article-copyright">
|
|
{{ (resources.Get "icons/copyright.svg").Content | safeHTML }}
|
|
<span>{{ .Site.Params.postLicense }}</span>
|
|
</section>
|
|
{{ end }}
|
|
</footer> |