mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
This commit customises the margins of the first header on each page so that it lines up with the navigation.
14 lines
350 B
HTML
14 lines
350 B
HTML
{% extends "admin_template.html" %}
|
|
|
|
{% block fullwidth_content %}
|
|
<div class="grid-row">
|
|
<div class="column-one-third">
|
|
{% include "main_nav.html" %}
|
|
</div>
|
|
<div class="column-two-thirds column-main">
|
|
{% include 'flash_messages.html' %}
|
|
{% block maincolumn_content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|