mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-31 20:00:00 -04:00
24 lines
464 B
HTML
24 lines
464 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/components/button/macro.njk" import usaButton %}
|
|
|
|
{% block service_page_title %}
|
|
{{ template.name }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
<h1 class="font-body-2xl margin-bottom-3">{{ template.name }}</h1>
|
|
|
|
{{ template|string }}
|
|
|
|
<div class="page-footer">
|
|
{{ usaButton({
|
|
"element": "a",
|
|
"text": "Continue",
|
|
"href": continue_link,
|
|
}) }}
|
|
</div>
|
|
|
|
{% endblock %}
|