mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 11:23:48 -05:00
36 lines
1.0 KiB
HTML
36 lines
1.0 KiB
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 margin-top-5">
|
||
{% if help %}
|
||
<div class="tablet:grid-col-3">
|
||
{% else %}
|
||
<div class="tablet:grid-col-3">
|
||
{% endif %}
|
||
{% include "main_nav.html" %}
|
||
</div>
|
||
{% if help %}
|
||
<div class="grid-col-8">
|
||
{% else %}
|
||
<div class="tablet:grid-col-9 tablet:padding-left-4">
|
||
{% endif %}
|
||
{% block beforeContent %}
|
||
{% block backLink %}{% endblock %}
|
||
{% endblock %}
|
||
<main id="main-content" role="main" class="usa-prose site-prose margin-bottom-10">
|
||
{% block content %}
|
||
{% include 'flash_messages.html' %}
|
||
{% block maincolumn_content %}{% endblock %}
|
||
{% endblock %}
|
||
</main>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|