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

29 lines
665 B
HTML
Raw Normal View History

2019-06-04 11:20:33 +01:00
{% extends "withoutnav_template.html" %}
{% from "components/sub-navigation.html" import sub_navigation %}
{% from "components/page-header.html" import page_header %}
{% block per_page_title %}
{{ content_page_title }}
{% endblock %}
{% block maincolumn_content %}
2023-06-06 15:28:24 -04:00
<div class="grid-row">
2019-06-04 11:20:33 +01:00
{% if navigation_links %}
2023-06-06 15:28:24 -04:00
<div class="tablet:grid-col-2">
2019-06-04 11:20:33 +01:00
{{ sub_navigation(navigation_links) }}
</div>
2023-08-08 16:19:17 -04:00
<div class="tablet:grid-col-10 padding-left-4 usa-prose site-prose">
{% else %}
<div class="tablet:grid-col-10">
2019-06-04 11:20:33 +01:00
{% endif %}
{% block content_column_content %}
{% endblock %}
2019-06-04 11:20:33 +01:00
</div>
</div>
2019-06-04 11:20:33 +01:00
{% endblock %}