Files
notifications-admin/app/templates/views/support/public.html
Katie Smith 0f0b8b8ae4 Move back link outside of main where it was used in the page header
The page_header macro includes an optional back link. Since the
page_header is always used inside `<main>`, where the back link should
not be, this stops setting the back link in the page header and instead
sets it in the new `backLink` block.
2021-08-03 11:28:15 +01:00

51 lines
1.7 KiB
HTML

{% extends "withoutnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% from "components/back-link/macro.njk" import govukBackLink %}
{% block per_page_title %}
The GOV.UK Notify service is for people who work in the government
{% endblock %}
{% block backLink %}
{{ govukBackLink({ "href": url_for('.support') }) }}
{% endblock %}
{% block maincolumn_content %}
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
{{ page_header('The GOV.UK Notify service is for people who work in the government') }}
<p class="govuk-body">
We cannot give advice to the public. We do not have access to information about you held by government departments.
</p>
<p class="govuk-body">
There are other pages on GOV.UK where you can get help:
</p>
<h2 class="govuk-heading-m govuk-!-margin-bottom-1">
<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/coronavirus">Coronavirus (COVID-19)</a>
</h2>
<p class="govuk-body">
Find guidance and support.
</p>
<h2 class="govuk-heading-m govuk-!-margin-bottom-1">
<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/contact">Contact the government</a>
</h2>
<p class="govuk-body">
Ask about benefits, driving, transport, tax, and more.
</p>
<h2 class="govuk-heading-m govuk-!-margin-bottom-1">
<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/report-suspicious-emails-websites-phishing">Report internet scams and phishing</a>
</h2>
<p class="govuk-body">
Advice on suspicious emails and text messages.
</p>
</div>
</div>
{% endblock %}