Statistics
| Branch: | Tag: | Revision:

root / cloudcms / templates / cms / pages / onecol.html @ c6fdba44

History | View | Annotate | Download (718 Bytes)

1
{% extends "cms/base.html" %}
2

    
3
{% block page.body %}
4
<div class="full">
5
     
6
    {% block page.top.content %}
7
        {% for content in feincms_page.content.top %}
8
            {{ content.render }}
9
        {% endfor %}
10
    {% endblock %}
11
     
12
</div>
13
<div class="two-cols clearfix">
14
        
15
        <div class="rt">
16
    {% block page.bottom_right.content %}
17
        {% for content in feincms_page.content.bottom_right %}
18
            {{ content.render }}
19
        {% endfor %}
20
    {% endblock %}
21
        </div>
22
        <div class="lt">
23
    {% block page.bottom_left.content %}
24
        {% for content in feincms_page.content.bottom_left %}
25
            {{ content.render }}
26
        {% endfor %}
27
    {% endblock %}
28
        </div>
29
        
30
        
31
</div>
32
{% endblock %}
33