diff --git a/index.twig b/index.twig
index bdca11b..1260ee1 100644
--- a/index.twig
+++ b/index.twig
@@ -32,13 +32,10 @@
- {% for page in pages if page.title and not page.hidden %}
- {% set pageDepth = page.id|split('/')|length %}
- {% if (pageDepth == 2) and (page.id ends with "/index") or (pageDepth == 1) %}
- -
- {{ page.title }}
-
- {% endif %}
+ {% for page in pages(depthOffset=-1) if page.title and not page.hidden %}
+ -
+ {{ page.title }}
+
{% endfor %}