aboutsummaryrefslogtreecommitdiffstats
path: root/templates/wiki/base.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-04-30 11:09:51 +0100
committerGravatar Gareth Coles <[email protected]>2018-04-30 11:09:51 +0100
commita1b8dc5e9bfc021a78f73a3ffecd39827327d6a8 (patch)
tree9e92b45460bd6a921c303ba67c17bc820d838b22 /templates/wiki/base.html
parent[Wiki] Header icons need a space afterwards (diff)
[Wiki] This should completely make headers uniform
Diffstat (limited to 'templates/wiki/base.html')
-rw-r--r--templates/wiki/base.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/templates/wiki/base.html b/templates/wiki/base.html
index aeb64a2a..67a60706 100644
--- a/templates/wiki/base.html
+++ b/templates/wiki/base.html
@@ -39,10 +39,14 @@
{% for header in data.headers %}
{% if "sub_headers" in header %}
<li class="uk-parent">
- <a href="{{ header.id }}">{{ header.title | safe }}</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 }}">{{ sub.title | safe }}</a></li>
+ <li><a href="{{ sub.id }}">
+ {{ sub.title | safe }}
+ </a></li>
{% endfor %}
</ul>
</li>