Files
notifications-admin/app/templates/components/page-header.html
Tom Byers e5bc33be84 Replace all existing back-links with component
Includes:
- all existing macros
- all imports for the existing macros
2019-12-03 13:13:21 +00:00

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 %}