Files
notifications-admin/app/templates/withnav_template.html
T

41 lines
1.4 KiB
HTML
Raw Normal View History

{% extends "base.html" %}
2015-12-14 16:37:15 +00:00
2024-12-03 13:05:55 -08:00
{% block per_page_title %}{% if current_org.name %}{% block org_page_title %}{% endblock %} {{ current_org.name }}{%
else %}{% block service_page_title %}{% endblock %} {{ current_service.name }}{% endif %}{% endblock %}
2017-02-13 10:45:15 +00:00
{% block main %}
2023-06-08 13:12:00 -04:00
<div class="grid-container">
{% block serviceNavigation %}
{% if current_org.name %}
{% else %}
{% include "components/service_nav.html" %}
{% endif %}
{% endblock %}
{% if current_org.name %}
{% block orgNavBreadcrumb %}{% include "components/org_nav_breadcrumb.html" %}{% endblock %}
{% endif %}
<div class="grid-row margin-top-5">
<div class="tablet:grid-col-2">
{% block sideNavigation %}
{% if current_org.name %}
{% include "components/org_nav.html" %}
{% else %}
{% include "components/main_nav.html" %}
{% endif %}
{% endblock %}
</div>
<div class="tablet:grid-col-10 tablet:padding-left-4">
2021-07-30 14:24:35 +01:00
{% block beforeContent %}
{% block backLink %}{% endblock %}
{% endblock %}
<main id="main-content" role="main" class="usa-prose site-prose margin-bottom-10">
{% block content %}
{% include 'components/flash_messages.html' %}
{% block maincolumn_content %}{% endblock %}
{% endblock %}
</main>
</div>
2016-01-22 10:57:49 +00:00
</div>
</div>
2015-12-15 08:20:25 +00:00
{% endblock %}