blob: 6fa7d27b99bae92103bdb82fea9e66c0214934db [file] [log] [blame]
Anand Doshi51146c02012-07-12 18:41:12 +05301{% extends "html/page.html" %}
2
3{% block javascript %}
4 {% if insert_code %}
5 {{ javascript }}
6 {% endif %}
7{% endblock %}
Anand Doshi72c945b2012-06-22 20:01:07 +05308
9{% block content %}
10 <div class="layout-wrapper layout-wrapper-background">
11 <div class="web-content" style="text-align: {{ text_align }};">
12
13 {% if layout and layout.startswith('Two column') %}
14 <div class="layout-main-section">
15 {% else %}
16 <div class="layout-main">
17 {% endif %}
18 {{ main_section_html }}
19 </div>
20
21 {% if layout and layout.startswith('Two column') %}
22 <div class="layout-side-section">
23 {{ side_section_html }}
24 </div>
25 {% endif %}
26 <div style="clear: both"></div>
27 </div>
28 </div>
29{% endblock %}