mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
25.29.2021 36e0d297980ae62d34ecf2f47e676f4c3d78419e
Treat the "copyright" parameter as markdown (#208)

Treat the "copyright" parameter as markdown.
1 files modified
2 ■■■ changed files
layouts/partials/sidebar.html 2 ●●● patch | view | raw | blame | history
layouts/partials/sidebar.html
@@ -18,6 +18,6 @@
        {{ end }}
    </ul>
    <div class="footer">
        <div class="by_farbox">&copy; {{ if isset .Site.Params "copyright" }} {{ .Site.Params.copyright }} {{ else }} {{ .Site.Params.author }} {{ now.Format "2006"}} {{end}}</div>
        <div class="by_farbox">&copy; {{ if isset .Site.Params "copyright" }} {{ .Site.Params.copyright | markdownify }} {{ else }} {{ .Site.Params.author }} {{ now.Format "2006"}} {{end}}</div>
    </div>
</div>