Files
notifications-admin/app/templates/components/page-header.html
T

15 lines
258 B
HTML
Raw Normal View History

{% from "components/back-link/macro.njk" import govukBackLink %}
2019-04-29 11:44:05 +01:00
{% macro page_header(
h1,
back_link=None
) %}
{% if back_link %}
{{ govukBackLink({ "href": back_link }) }}
2019-04-29 11:44:05 +01:00
{% endif %}
<h1 class="heading-large">{{ h1 }}</h1>
{% endmacro %}