mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-02-07 04:13:31 +08:00
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>
|