mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-04 08:01:34 -04:00
This commit modifies the HTML `<title>` tags for all the pages. It makes two main changes: - make the title tag match the `<h1>` of the page, for better or worse - put the service name after the page title, seperated by an en dash, as per GOV.UK
42 lines
924 B
HTML
42 lines
924 B
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
|
||
{% block page_title %}
|
||
{{heading}} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<div class="grid-row">
|
||
<div class="column-two-thirds">
|
||
|
||
<h1 class="heading-large">
|
||
{{ heading }}
|
||
</h1>
|
||
|
||
<p>
|
||
Users will see your service name when they receive messages through GOV.UK
|
||
Notify:
|
||
</p>
|
||
|
||
<ul class="list-bullet bottom-gutter">
|
||
<li>
|
||
at the start of every text message, eg ‘Vehicle tax: we received your
|
||
payment, thank you’
|
||
</li>
|
||
<li>
|
||
as your email sender name
|
||
</li>
|
||
</ul>
|
||
|
||
<form autocomplete="off" method="post">
|
||
{{ textbox(form.name, hint="You can change this later") }}
|
||
{{ page_footer('Continue') }}
|
||
</form>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|