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

14 lines
350 B
HTML
Raw Normal View History

2015-12-14 16:37:15 +00:00
{% extends "admin_template.html" %}
{% from "main_nav.html" import main_nav with context %}
2015-12-15 08:20:25 +00:00
{% block fullwidth_content %}
<div class="grid-row">
2015-12-17 10:18:31 +00:00
<div class="column-one-quarter">
2015-12-17 10:28:15 +00:00
{% include "main_nav.html" %}
2015-12-15 08:20:25 +00:00
</div>
2015-12-17 10:18:31 +00:00
<div class="column-three-quarters">
2015-12-15 08:20:25 +00:00
{% block maincolumn_content %}{% endblock %}
</div>
2015-12-14 16:37:15 +00:00
</div>
2015-12-15 08:20:25 +00:00
{% endblock %}