2016-04-01 10:54:55 +01:00
|
|
|
|
{% 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 %}
|
2016-04-04 16:54:28 +01:00
|
|
|
|
{{ heading }} – GOV.UK Notify
|
2016-04-01 10:54:55 +01:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
|
|
|
|
|
{% call banner_wrapper(type='tour') %}
|
2016-04-04 16:54:28 +01:00
|
|
|
|
<h2 class="heading-large">{{ heading }}</h2>
|
2016-04-01 10:54:55 +01:00
|
|
|
|
<p>
|
|
|
|
|
|
Notify merges your data with the template and sends the messages
|
|
|
|
|
|
</p>
|
2016-04-19 10:30:15 +01:00
|
|
|
|
<a href="{{ url_for('.show_all_services_or_dashboard') }}">
|
2016-04-01 10:54:55 +01:00
|
|
|
|
Next
|
|
|
|
|
|
</a>
|
2016-04-04 16:51:45 +01:00
|
|
|
|
<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
|
2016-04-01 10:54:55 +01:00
|
|
|
|
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"
|
2016-04-04 16:51:45 +01:00
|
|
|
|
>
|
|
|
|
|
|
</picture>
|
2016-04-01 10:54:55 +01:00
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|