mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-06 18:18:25 -04:00
24 lines
455 B
HTML
24 lines
455 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/uk_components/button/macro.njk" import govukButton %}
|
|
|
|
{% block service_page_title %}
|
|
{{ template.name }}
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
<h1 class="heading-large">{{ template.name }}</h1>
|
|
|
|
{{ template|string }}
|
|
|
|
<div class="page-footer">
|
|
{{ govukButton({
|
|
"element": "a",
|
|
"text": "Continue",
|
|
"href": continue_link,
|
|
}) }}
|
|
</div>
|
|
|
|
{% endblock %}
|