summaryrefslogtreecommitdiffstats
path: root/askbot/templates/two_column_body.html
blob: 4c3193be920ea000d54351279283eedb10e5368a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base.html" %}
{% block body_class %}two-col{% endblock %}
{% block body %}
<div id="ContentLeft">
    {% block content%}
    {% endblock%}
</div>
<div id="ContentRight">
    {% block sidebar%}
    {% endblock%}
</div>
{% endblock %}