Statistics
| Branch: | Tag: | Revision:

root / cloudcms / templates / cms / footer.html @ 0835eb8c

History | View | Annotate | Download (617 Bytes)

1
{% if APP.footer_top %}
2
<p>
3
    {{ APP.footer_top|safe }}
4
</p>
5
{% endif %}
6
<div class="clearfix">
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>
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

    
24
{% if APP.footer_bottom %}
25

    
26

    
27
    {{ APP.footer_bottom|safe }}
28

    
29
{% endif %}