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.
44 lines
1.1 KiB
44 lines
1.1 KiB
{% extends "default/layout/main.tpl" %}
|
|
|
|
{# 1 column #}
|
|
{% block body %}
|
|
{# Plugin main top #}
|
|
{% if plugin_main_top %}
|
|
<div id="plugin_main_top" class="span12">
|
|
{{ plugin_main_top }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{# 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 %}
|
|
|
|
{# Plugin main bottom #}
|
|
{% if plugin_main_bottom %}
|
|
<div id="plugin_main_bottom" class="span12">
|
|
{{ plugin_main_bottom }}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|