|
@@ -34,15 +34,7 @@
|
|
|
</form>
|
|
|
{% endif %}
|
|
|
|
|
|
-{% if show_header == true %}
|
|
|
- <div class="skip">
|
|
|
- <ul>
|
|
|
- <li><a href="#menu">{{ "WCAGGoMenu"|get_lang }}</a></li>
|
|
|
- <li><a href="#content" accesskey="2">{{ "WCAGGoContent"|get_lang }}</a></li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
- <div id="wrapper">
|
|
|
- <div id="page" class="page-section"> <!-- page section -->
|
|
|
+<div id="page" class="container"> <!-- page section -->
|
|
|
{# Bug and help notifications #}
|
|
|
{% block help_notifications %}
|
|
|
<ul id="navigation" class="notification-panel">
|
|
@@ -55,68 +47,66 @@
|
|
|
{% block topbar %}
|
|
|
{% include template ~ "/layout/topbar.tpl" %}
|
|
|
{% endblock %}
|
|
|
-
|
|
|
- <div id="main" class="container">
|
|
|
<header>
|
|
|
- <div class="row">
|
|
|
- <div id="header_left" class="span4">
|
|
|
- {# logo #}
|
|
|
- {% block logo %}
|
|
|
- {{ logo }}
|
|
|
- {% endblock %}
|
|
|
-
|
|
|
- {# plugin_header left #}
|
|
|
- {% if plugin_header_left is not null %}
|
|
|
- <div id="plugin_header_left">
|
|
|
- {{ plugin_header_left }}
|
|
|
- </div>
|
|
|
- {% endif %}
|
|
|
- </div>
|
|
|
- <div id="header_center" class="span3">
|
|
|
- {# plugin_header center #}
|
|
|
- {% if plugin_header_center is not null %}
|
|
|
- <div id="plugin_header_center">
|
|
|
- {{ plugin_header_center }}
|
|
|
- </div>
|
|
|
- {% endif %}
|
|
|
-
|
|
|
- </div>
|
|
|
- <div id="header_right" class="span5">
|
|
|
- {# plugin_header right #}
|
|
|
- {% if plugin_header_right is not null %}
|
|
|
- <div id="plugin_header_right">
|
|
|
- {{ plugin_header_right }}
|
|
|
- </div>
|
|
|
- {% endif %}
|
|
|
- <div class="section-notifications">
|
|
|
- <ul id="notifications" class="nav nav-pills pull-right">
|
|
|
- {{ notification_menu }}
|
|
|
- </ul>
|
|
|
+ <div id="main" class="container">
|
|
|
+ {% if plugin_header_main %}
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-lg-12">
|
|
|
+ {{ plugin_header_main }}
|
|
|
</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
- {% if plugin_header_main %}
|
|
|
- <div class="row">
|
|
|
- <div class="span12">
|
|
|
- <div id="plugin_header_main">
|
|
|
- {{ plugin_header_main }}
|
|
|
+ {% endif %}
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-lg-3">
|
|
|
+ {{ logo }}
|
|
|
+ </div>
|
|
|
+ <div class="col-lg-9">
|
|
|
+ <div class="col-4">
|
|
|
+ {% if plugin_header_left is not null %}
|
|
|
+ <div id="plugin_header_left">
|
|
|
+ {{ plugin_header_left }}
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
+ </div>
|
|
|
+ <div class="col-4">
|
|
|
+ {% if plugin_header_center is not null %}
|
|
|
+ <div id="plugin_header_center">
|
|
|
+ {{ plugin_header_center }}
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
+ </div>
|
|
|
+ <div class="col-4">
|
|
|
+ {% if plugin_header_right is not null %}
|
|
|
+ <div id="plugin_header_right">
|
|
|
+ {{ plugin_header_right }}
|
|
|
+ </div>
|
|
|
+ {% endif %}
|
|
|
+ <div class="section-notifications">
|
|
|
+ <ul id="notifications" class="nav nav-pills pull-right">
|
|
|
+ {{ notification_menu }}
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- {% endif %}
|
|
|
+ </header>
|
|
|
+ <section id="menu-bar">
|
|
|
+ {# menu #}
|
|
|
+ {% block menu %}
|
|
|
+ {% include template ~ "/layout/menu.tpl" %}
|
|
|
+ {% endblock %}
|
|
|
+ </section>
|
|
|
+ <section id="breadcrumb-bar">
|
|
|
+ {# breadcrumb #}
|
|
|
+ {% block breadcrumb %}
|
|
|
+ {{ breadcrumb }}
|
|
|
+ {% endblock %}
|
|
|
+ </section>
|
|
|
|
|
|
- {# menu #}
|
|
|
- {% block menu %}
|
|
|
- {% include template ~ "/layout/menu.tpl" %}
|
|
|
- {% endblock %}
|
|
|
|
|
|
- {# breadcrumb #}
|
|
|
- {% block breadcrumb %}
|
|
|
- {{ breadcrumb }}
|
|
|
- {% endblock %}
|
|
|
- </header>
|
|
|
- <div id="top_main_content" class="row">
|
|
|
+
|
|
|
+ <div id="top_main_content">
|
|
|
|
|
|
{# course navigation links/shortcuts need to be activated by the admin #}
|
|
|
- {% include template ~ "/layout/course_navigation.tpl" %}
|
|
|
-{% endif %}
|
|
|
+ {% include template ~ "/layout/course_navigation.tpl" %}
|