Statistics
| Branch: | Tag: | Revision:

root / cloudcms / templates / cms / footer.html @ ab9fdcfe

History | View | Annotate | Download (802 Bytes)

1
{% load feincms_tags mptt_tags feincms_page_tags %}
2
{% if APP.footer_top %}
3
<p>
4
    {{ APP.footer_top|safe }}
5
</p>
6
{% endif %}
7
<div class="clearfix">
8
    {% feincms_nav feincms_page level=2 depth=1 as sublevel %}
9
    {% recursetree sublevel %}
10
    {% with node as p %}
11
    <ul class="col">
12
        <li>
13
            <a href="{{ p.get_absolute_url }}">{{ p.title }}</a>
14
        </li>
15
        {% if not p.is_leaf_node %} 
16
        {% for innerp in node.children.all %}
17
        {% if innerp.in_navigation %}
18
        <li>
19
            <a href="{{ innerp.get_absolute_url }}">{{ innerp.title }}</a>
20
        </li>
21
        {% endif %}
22
        {% endfor %}
23
        {% endif %}
24
    </ul>
25
    {% endwith %}
26
    {% endrecursetree %}
27
</div>
28

    
29
{% if APP.footer_bottom %}
30

    
31

    
32
    {{ APP.footer_bottom|safe }}
33

    
34
{% endif %}