Statistics
| Branch: | Tag: | Revision:

root / cloudcms / templates / cms / pages / faq.html @ 915e4130

History | View | Annotate | Download (503 Bytes)

1
{% extends "cms/pages/basic1top2bottom.html" %}
2
{% load applicationcontent_tags feincms_page_tags %}
3

    
4

    
5
{% block page.bottom_right.content %}
6
    {% if request|has_fragment:"maincol" %}
7
        {% get_fragment request "maincol" %}
8
    {% else %}
9
        {{ block.super }}
10
    {% endif %}
11
{% endblock %}
12

    
13
{% block page.bottom_left.content %}
14
    {% if request|has_fragment:"sidecol" %}
15
        {% get_fragment request "sidecol" %}
16
    {% else %}
17
        {{ block.super }}
18
    {% endif %}
19
{% endblock %}
20

    
21