diff --git a/home/templates/home/home_page.html b/home/templates/home/home_page.html index f4e938d..ed347eb 100644 --- a/home/templates/home/home_page.html +++ b/home/templates/home/home_page.html @@ -203,6 +203,29 @@

{{page.footer_tit +
+
+ + {% for sibling in page.get_siblings %} + {% if sibling.title and sibling.live and sibling.get_parent.content_type == page.content_type %} + + {{ sibling.title }} + + {% endif %} + {% endfor %} + {% for descendant in page.get_descendants %} + {% if descendant.live and descendant.content_type == page.content_type %} + + {{ descendant.title }} + + {% endif %} + {% endfor %} +
+