mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-08 10:28:57 -04:00
* Updated header and footer * Updated fonts * Moved files around and updated gulpfile to correct the build process when it goes to production * Adjusted grid templating * Added images to assets * Update app/templates/components/uk_components/footer/template.njk Co-authored-by: Steven Reilly <stvnrlly@users.noreply.github.com>
29 lines
656 B
HTML
29 lines
656 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 sub-content">
|
|
{% else %}
|
|
<div class="tablet:grid-col-12">
|
|
{% endif %}
|
|
|
|
{% block content_column_content %}
|
|
{% endblock %}
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|