mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-03-02 07:11:14 -05:00
* Updated header and footer * Moved files around and updated gulpfile to correct the build process when it goes to production * Updated fonts * Adjusted grid templating * Adding images to assets * Updated account pages, dashboard, and pages in message sending flow * Updated the styling for the landing pages in the account section once logged in
36 lines
964 B
HTML
36 lines
964 B
HTML
{% extends "admin_template.html" %}
|
||
|
||
{% block per_page_title %}
|
||
{% block service_page_title %}{% endblock %} – {{ current_service.name }}
|
||
{% endblock %}
|
||
|
||
{% block main %}
|
||
<div class="grid-container">
|
||
{% include "service_navigation.html" %}
|
||
<div class="grid-row">
|
||
{% if help %}
|
||
<div class="grid-col-3">
|
||
{% else %}
|
||
<div class="grid-col-3">
|
||
{% endif %}
|
||
{% include "main_nav.html" %}
|
||
</div>
|
||
{% if help %}
|
||
<div class="grid-col-8">
|
||
{% else %}
|
||
<div class="grid-col-9 padding-left-4 sub-content">
|
||
{% endif %}
|
||
{% block beforeContent %}
|
||
{% block backLink %}{% endblock %}
|
||
{% endblock %}
|
||
<main id="main-content" role="main">
|
||
{% block content %}
|
||
{% include 'flash_messages.html' %}
|
||
{% block maincolumn_content %}{% endblock %}
|
||
{% endblock %}
|
||
</main>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|