mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 02:42:26 -05:00
- use SASS variables for colours and spacing - make navigation an include not a macro (because it doesn’t take any parameters)
14 lines
350 B
HTML
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 %}
|