mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-21 02:44:42 -05:00
15 lines
258 B
HTML
15 lines
258 B
HTML
{% from "components/back-link/macro.njk" import govukBackLink %}
|
|
|
|
{% macro page_header(
|
|
h1,
|
|
back_link=None
|
|
) %}
|
|
|
|
{% if back_link %}
|
|
{{ govukBackLink({ "href": back_link }) }}
|
|
{% endif %}
|
|
|
|
<h1 class="heading-large">{{ h1 }}</h1>
|
|
|
|
{% endmacro %}
|