mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 08:31:00 -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
23 lines
428 B
HTML
23 lines
428 B
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/browse-list.html" import browse_list %}
|
||
|
||
{% block page_title %}
|
||
Choose service – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">
|
||
Choose service
|
||
</h1>
|
||
|
||
{{ browse_list(services) }}
|
||
{{ browse_list([
|
||
{
|
||
'title': 'Add a new service…',
|
||
'link': url_for('.add_service')
|
||
},
|
||
]) }}
|
||
|
||
{% endblock %}
|