mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 20:01:01 -05: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.
33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
{% extends "withoutnav_template.html" %}
|
|
{% from "components/sub-navigation.html" import sub_navigation %}
|
|
|
|
{% block per_page_title %}
|
|
Using Notify
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="govuk-grid-row">
|
|
<div class="govuk-grid-column-one-third">
|
|
{{ sub_navigation(navigation_links) }}
|
|
</div>
|
|
<div class="govuk-grid-column-two-thirds">
|
|
|
|
<h1 class="heading-large">Using Notify</h1>
|
|
|
|
<p class="govuk-body">The information on this page has moved.</p>
|
|
|
|
<p class="govuk-body">Find out more about:</p>
|
|
<ul class="list list-bullet">
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.trial_mode_new') }}">trial mode</a></li>
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.message_status') }}">message status types</a></li>
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.features_email') }}">email replies</a></li>
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.features_sms') }}">text message replies</a></li>
|
|
<li><a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.features_letters') }}">letters</a></li>
|
|
</ul>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|