Files
notifications-admin/app/templates/withnav_template.html
T

14 lines
364 B
HTML
Raw Normal View History

2015-12-14 16:37:15 +00:00
{% extends "admin_template.html" %}
2015-12-15 08:20:25 +00:00
{% block fullwidth_content %}
2016-01-22 10:57:49 +00:00
<div class="grid-row">
2016-02-02 13:38:39 +00:00
<div class="column-one-third">
2016-01-22 10:57:49 +00:00
{% include "main_nav.html" %}
</div>
<main role="main" class="column-two-thirds column-main">
{% include 'flash_messages.html' %}
2016-01-22 10:57:49 +00:00
{% block maincolumn_content %}{% endblock %}
</main>
2016-01-22 10:57:49 +00:00
</div>
2015-12-15 08:20:25 +00:00
{% endblock %}