Statistics
| Branch: | Tag: | Revision:

root / cloudcms / templates / cms / pages / basic2top2bottom.html @ 6f4b4fe5

History | View | Annotate | Download (966 Bytes)

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

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