Statistics
| Branch: | Tag: | Revision:

root / cloudcms / templates / cms / footer.html @ 9df24f38

History | View | Annotate | Download (657 Bytes)

1
{% if APP.footer_top %}
2
<div class="top row">
3
    {{ APP.footer_top|safe }}
4
</div>
5
{% endif %}
6
<div class="bottom row">
7
{% load feincms_tags feincms_page_tags %}
8
{% feincms_navigation of feincms_page as sublevel level=2,depth=1 %}
9
{% for p in sublevel %}
10
<ul class="col">
11
<li class="header">
12
<a href="{{ p.get_absolute_url }}">{{ p.title }}</a>
13
</li>
14
{% feincms_navigation of p as innerlinks level=3,depth=2 %}
15
{% for innerp in innerlinks %}
16
<li>
17
<a href="{{ innerp.get_absolute_url }}">{{ innerp.title }}</a>
18
</li>
19
{% endfor %}
20
</ul>
21
{% endfor %}
22
</div>
23
{% if APP.footer_bottom %}
24
<div class="last row">
25
    {{ APP.footer_bottom|safe }}
26
</div>
27
{% endif %}