Remove uses of safeURL

This commit is contained in:
Will Faught
2025-02-06 22:48:18 -08:00
parent dcbc7775ea
commit 268997acf2
9 changed files with 22 additions and 22 deletions

View File

@@ -27,13 +27,13 @@
<div id="paige-file">
{{ with $edit }}
<div class="paige-row-narrow text-center text-secondary" id="paige-edit">
<a class="link-secondary" href="{{ . | safeURL }}">{{ i18n "paige_edit_this_page" }}</a>
<a class="link-secondary" href="{{ . }}">{{ i18n "paige_edit_this_page" }}</a>
</div>
{{ end }}
{{ with $history }}
<div class="paige-row-narrow text-center text-secondary" id="paige-history">
<a class="link-secondary" href="{{ . | safeURL }}">{{ i18n "paige_edit_history" }}</a>
<a class="link-secondary" href="{{ . }}">{{ i18n "paige_edit_history" }}</a>
</div>
{{ end }}
</div>