Files
notifications-admin/app/templates/withnav_template.html
Chris Hill-Scott 6bdc0d3fce Tidy up navigation code
- use SASS variables for colours and spacing
- make navigation an include not a macro (because it doesn’t take any
  parameters)
2016-01-05 13:22:08 +00:00

14 lines
350 B
HTML

{% extends "admin_template.html" %}
{% from "main_nav.html" import main_nav with context %}
{% block fullwidth_content %}
<div class="grid-row">
<div class="column-one-quarter">
{% include "main_nav.html" %}
</div>
<div class="column-three-quarters">
{% block maincolumn_content %}{% endblock %}
</div>
</div>
{% endblock %}