2024-04-24 13:43:17 -07:00
|
|
|
|
{% 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
|
|
|
|
|
2019-10-11 16:44:17 +01:00
|
|
|
|
{% block main %}
|
2023-06-08 13:12:00 -04:00
|
|
|
|
<div class="grid-container">
|
2024-04-24 13:43:17 -07:00
|
|
|
|
{% block serviceNavigation %}
|
|
|
|
|
|
{% if current_org.name %}
|
|
|
|
|
|
{% else %}
|
2024-08-20 13:17:01 -07:00
|
|
|
|
{% include "components/service_nav.html" %}
|
2024-04-24 13:43:17 -07:00
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% if current_org.name %}
|
2024-08-20 13:17:01 -07:00
|
|
|
|
{% block orgNavBreadcrumb %}{% include "components/org_nav_breadcrumb.html" %}{% endblock %}
|
2024-04-24 13:43:17 -07:00
|
|
|
|
{% endif %}
|
2023-08-14 10:35:11 -04:00
|
|
|
|
<div class="grid-row margin-top-5">
|
2024-07-25 15:36:31 -04:00
|
|
|
|
<div class="tablet:grid-col-2">
|
2024-04-24 13:43:17 -07:00
|
|
|
|
{% block sideNavigation %}
|
|
|
|
|
|
{% if current_org.name %}
|
2024-08-20 13:17:01 -07:00
|
|
|
|
{% include "components/org_nav.html" %}
|
2024-04-24 13:43:17 -07:00
|
|
|
|
{% else %}
|
2024-08-20 13:17:01 -07:00
|
|
|
|
{% include "components/main_nav.html" %}
|
2024-04-24 13:43:17 -07:00
|
|
|
|
{% endif %}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
</div>
|
2024-07-25 15:36:31 -04:00
|
|
|
|
<div class="tablet:grid-col-10 tablet:padding-left-4">
|
2021-07-30 14:24:35 +01:00
|
|
|
|
{% block beforeContent %}
|
|
|
|
|
|
{% block backLink %}{% endblock %}
|
|
|
|
|
|
{% endblock %}
|
2023-08-14 10:35:11 -04:00
|
|
|
|
<main id="main-content" role="main" class="usa-prose site-prose margin-bottom-10">
|
2019-10-11 16:44:17 +01:00
|
|
|
|
{% block content %}
|
2024-08-20 13:17:01 -07:00
|
|
|
|
{% include 'components/flash_messages.html' %}
|
2019-10-11 16:44:17 +01:00
|
|
|
|
{% 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 %}
|