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

29 lines
673 B
HTML
Raw Normal View History

{% extends "base.html" %}
2019-06-04 11:20:33 +01:00
{% 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 %}
<div class="tablet:grid-col-2 margin-bottom-4">
2019-06-04 11:20:33 +01:00
{{ sub_navigation(navigation_links) }}
</div>
<div class="tablet:grid-col-10 tablet: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 %}