diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/page.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/page.html b/templates/page.html index 2144e35..b06039f 100644 --- a/templates/page.html +++ b/templates/page.html @@ -9,7 +9,12 @@ <li><a href="{{ h2.permalink | safe }}">{{ h2.title }}</a> {% if h2.children %} <ul>{% for h3 in h2.children %} - <li><a href="{{ h3.permalink | safe }}">{{ h3.title }}</a></li> + <li><a href="{{ h3.permalink | safe }}">{{ h3.title }}</a> + {% if h3.children %} + <ul>{% for h4 in h3.children %} + <li><a href="{{ h4.permalink | safe }}">{{ h4.title }}</a> + {% endfor %}</ul> + {% endif %}</li> {% endfor %}</ul> {% endif %}</li> {% endfor %}</ul> |