mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-24 01:49:15 -04:00
There’s no content in the tour that’s specific to a service. And since we can now take a pretty good guess at what service you last used, or which service we should send you to if you only have one service, there’s no need to make the URLs for the tour service-specific. This also means that you don’t need to be logged in to see the tour pages, and we have no good reason to only restrict these pages to users with accounts. https://www.pivotaltracker.com/story/show/116960703
37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/textbox.html" import textbox %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/banner.html" import banner_wrapper %}
|
||
|
||
{% block page_title %}
|
||
{{ heading }} – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
{% call banner_wrapper(type='tour') %}
|
||
<h2 class="heading-large">{{ heading }}</h2>
|
||
<p>
|
||
Notify merges your data with the template and sends the messages
|
||
</p>
|
||
<a href="{{ url_for('.show_all_services_or_dashboard') }}">
|
||
Next
|
||
</a>
|
||
<picture class="banner-tour-image-flush-bottom">
|
||
<source
|
||
type="image/svg+xml"
|
||
srcset="/static/images/tour/{{ current_page }}.svg"
|
||
alt="Three mobiles phones, each showing a text message personalised with data about the recipient"
|
||
width="840" height="290"
|
||
>
|
||
<img
|
||
src="/static/images/tour/{{ current_page }}.png"
|
||
class="banner-tour-image-flush-bottom"
|
||
width="840" height="290"
|
||
alt="Three mobiles phones, each showing a text message personalised with data about the recipient"
|
||
>
|
||
</picture>
|
||
{% endcall %}
|
||
|
||
{% endblock %}
|