123456789101112131415161718192021222324252627282930313233343536373839 |
- {% extends "jquery_mobile/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 %}
- {% if show_header == true %}
- <div class="span12">
- {% endif %}
- {% include "jquery_mobile/layout/page_body.tpl" %}
- {% block content %}
- {% if content is not null %}
- <section id="main_content">
- {{ content }}
- </section>
- {% endif %}
- {% endblock %}
- {% if show_header == true %}
-
- </div>
- {% endif %}
- {# Plugin bottom #}
- {% if plugin_content_bottom %}
- <div id="plugin_content_bottom" class="span12">
- {{ plugin_content_bottom }}
- </div>
- {% endif %}
- {% endblock %}
|