feat(article): custom license per article

This commit is contained in:
Jimmy Cai
2020-09-06 14:02:48 +02:00
parent 0745285e71
commit 90bdc34eb8
2 changed files with 3 additions and 2 deletions
@@ -7,10 +7,10 @@
</section>
{{ end }}
{{ if .Site.Params.article.license.enabled }}
{{ if and (.Site.Params.article.license.enabled) (not (eq .Params.license false)) }}
<section class="article-copyright">
{{ (resources.Get "icons/copyright.svg").Content | safeHTML }}
<span>{{ .Site.Params.article.license.default }}</span>
<span>{{ default .Site.Params.article.license.default .Params.license }}</span>
</section>
{{ end }}
</footer>