mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-06 03:13:42 -05:00
- Deleted /stylesheets folder - Removed sass build from gulpfile - Changed gov links to usa links - Changed other govuk styles, like breadcrumbs - Changed name of uk_components file to us_components - Fixed a few tests that broke on account of the changes
29 lines
665 B
HTML
29 lines
665 B
HTML
{% 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 %}
|
|
|
|
<div class="grid-row">
|
|
|
|
{% if navigation_links %}
|
|
<div class="tablet:grid-col-2">
|
|
{{ sub_navigation(navigation_links) }}
|
|
</div>
|
|
<div class="tablet:grid-col-10 padding-left-4 usa-prose site-prose">
|
|
{% else %}
|
|
<div class="tablet:grid-col-10">
|
|
{% endif %}
|
|
|
|
{% block content_column_content %}
|
|
{% endblock %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|