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

14 lines
350 B
HTML
Raw Normal View History

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