aboutsummaryrefslogtreecommitdiffstats
path: root/templates/wiki
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-04-30 10:33:51 +0100
committerGravatar Gareth Coles <[email protected]>2018-04-30 10:33:51 +0100
commit75094be179495890594ff7a3321033ec3b44c377 (patch)
tree38398c4b1df320682365dfdf3ff16ede40ebe698 /templates/wiki
parentFix for wiki.history.show with slashes in URL (diff)
[Wiki] In-page headers may have icons
Diffstat (limited to 'templates/wiki')
-rw-r--r--templates/wiki/base.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/wiki/base.html b/templates/wiki/base.html
index f53eea65..bc5845ac 100644
--- a/templates/wiki/base.html
+++ b/templates/wiki/base.html
@@ -39,10 +39,10 @@
{% for header in data.headers %}
{% if "sub_headers" in header %}
<li class="uk-parent">
- <a href="{{ header.id }}">{{ header.title }}</a>
+ <a href="{{ header.id }}">{{ header.title | safe }}</a>
<ul class="uk-nav-sub">
{% for sub in header.sub_headers %}
- <li><a href="{{ sub.id }}"><i class="uk-icon fas fa-diamond fa-fw" style="font-size: 0.5rem; vertical-align: 1px"></i> &nbsp;{{ sub.title }}</a></li>
+ <li><a href="{{ sub.id }}">{{ sub.title | safe }}</a></li>
{% endfor %}
</ul>
</li>