Mark includes as safe

This commit is contained in:
Will Faught
2025-02-23 10:28:51 -08:00
parent 1b0ca92c5a
commit fad409c0bd
8 changed files with 20 additions and 20 deletions

View File

@@ -17,7 +17,7 @@
{{ if or $copyright $credit $first $last $license }}
<footer id="paige-site-footer">
{{ partial "paige/func-include.html" (dict "name" "site-footer-first%s.html" "page" $page) }}
{{ partial "paige/func-include.html" (dict "name" "site-footer-first%s.html" "page" $page) | safeHTML }}
{{ with $copyright }}
<p class="paige-row-short text-center text-secondary" id="paige-site-copyright" {{ if $microdata }} itemprop="copyrightNotice" {{ end }}>{{ . }}</p>
@@ -31,6 +31,6 @@
<p class="paige-row-short text-center text-secondary" id="paige-site-credit">{{ . }}</p>
{{ end }}
{{ partial "paige/func-include.html" (dict "name" "site-footer-last%s.html" "page" $page) }}
{{ partial "paige/func-include.html" (dict "name" "site-footer-last%s.html" "page" $page) | safeHTML }}
</footer>
{{ end }}