mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-28 09:59:59 -04:00
All paragraphs should have class="govuk-body", or be otherwise custom-styled. This commit adds some extra checks to our test fixture that looks for paragraphs that don’t have any styling. Our test coverage is pretty good, so this should check almost all pages, and prevent regressions. I’ve done this in such a way that it can be extended for other elements (e.g. links) in the future.
36 lines
2.0 KiB
HTML
36 lines
2.0 KiB
HTML
{% extends "content_template.html" %}
|
|
{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %}
|
|
{% from "components/sub-navigation.html" import sub_navigation %}
|
|
|
|
{% block per_page_title %}
|
|
Guidance
|
|
{% endblock %}
|
|
|
|
{% block content_column_content %}
|
|
|
|
<h1 class="heading-large">Guidance</h1>
|
|
|
|
<p class="govuk-body">This guidance is for teams using GOV.UK Notify to send emails, text messages and letters.</p>
|
|
|
|
<p class="govuk-body">It explains how to:</p>
|
|
|
|
<ul class="list list-bullet">
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.edit_and_format_messages') }}">edit and format messages</a></li>
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.branding_and_customisation') }}">add branding and customisation</a></li>
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.send_files_by_email') }}">send files by email</a></li>
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('.upload_a_letter') }}">upload a letter</a></li>
|
|
</ul>
|
|
|
|
<h2 class="heading-medium">More information</h2>
|
|
|
|
<p class="govuk-body">The GOV.UK Service Manual has advice on:</p>
|
|
|
|
<ul class="list list-bullet">
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/service-manual/design/sending-emails-and-text-messages">planning and writing text messages and emails</a></li>
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/service-manual/design/writing-effective-letters">writing effective letters</a></li>
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/service-manual/technology/how-to-email-your-users">sending emails from your service domain</a></li>
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/service-manual/technology/sending-text-messages-securely">sending text messages securely</a></li>
|
|
</ul>
|
|
|
|
{% endblock %}
|