mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
- remove black border from banner - make banners have internal columns - make nav 2/3rd width, 19px text and more spaced out - only show the ‘restricted mode’ banner where it’s needed - rename ‘restricted mode’ to ‘trial mode’
14 lines
338 B
HTML
14 lines
338 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">
|
|
{% include 'flash_messages.html' %}
|
|
{% block maincolumn_content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|