Dynamic footer links
[snf-cloudcms] / cloudcms / templates / cms / footer.html
1 <div class="bottom row">
2 {% load feincms_tags feincms_page_tags %}
3 {% feincms_navigation of feincms_page as sublevel level=2,depth=1 %}
4 {% for p in sublevel %}
5 <ul class="col">
6 <li class="header">
7 <a href="{{ p.get_absolute_url }}">{{ p.title }}</a>
8 </li>
9 {% feincms_navigation of p as innerlinks level=3,depth=2 %}
10 {% for innerp in innerlinks %}
11 <li>
12 <a href="{{ innerp.get_absolute_url }}">{{ innerp.title }}</a>
13 </li>
14 {% endfor %}
15 </ul>
16 {% endfor %}
17 </div>