Files
notifications-admin/app/templates/withnav_template.html
Chris Hill-Scott 397ad05db9 Make a full width base template
We need this because the top section of the new product page will be
going full-bleed.
2016-12-07 16:14:30 +00:00

22 lines
656 B
HTML

{% extends "admin_template.html" %}
{% block fullwidth_content %}
<div id="content">
<div class="navigation-service">
<h2 class="navigation-service-name">
{{ current_service.name }}
</h2>
<a href="{{ url_for('main.choose_service') }}" class="navigation-service-switch">Switch service</a>
</div>
<div class="grid-row">
<div class="column-one-third">
{% include "main_nav.html" %}
</div>
<main role="main" class="column-two-thirds column-main">
{% include 'flash_messages.html' %}
{% block maincolumn_content %}{% endblock %}
</main>
</div>
</div>
{% endblock %}