Revision c6fdba44 cloudcms/templates/cms/footer.html

b/cloudcms/templates/cms/footer.html
1 1
{% if APP.footer_top %}
2
<div class="top row">
2
<p>
3 3
    {{ APP.footer_top|safe }}
4
</div>
4
</p>
5 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 %}
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 22
</div>
23 23
{% if APP.footer_bottom %}
24
<div class="last row">
24
<p>
25 25
    {{ APP.footer_bottom|safe }}
26
</div>
26
</p>
27 27
{% endif %}

Also available in: Unified diff