You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
777 B
32 lines
777 B
{% extends "default/layout/main.tpl" %}
|
|
|
|
{# 1 column #}
|
|
{% block body %}
|
|
|
|
{# Plugin top #}
|
|
{% if plugin_content_top %}
|
|
<div id="plugin_content_top" class="span12">
|
|
{{ plugin_content_top}}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="span12">
|
|
{% include "default/layout/page_body.tpl" %}
|
|
|
|
{% block content %}
|
|
{% if content is not null %}
|
|
<section id="main_content">
|
|
{{ content }}
|
|
</section>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
{# Plugin bottom #}
|
|
{% if plugin_content_bottom %}
|
|
<div id="plugin_content_bottom" class="span12">
|
|
{{ plugin_content_bottom }}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %} |