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 %}
|
|
|
|
|
|
{{heading}} – GOV.UK Notify
|
|
|
|
|
|
{% 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>
|
|
|
|
|
|
Set up a template like this:
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p>
|
2016-04-04 16:51:45 +01:00
|
|
|
|
<picture>
|
|
|
|
|
|
<source
|
|
|
|
|
|
type="image/svg+xml"
|
|
|
|
|
|
srcset="/static/images/tour/{{ current_page }}.svg"
|
|
|
|
|
|
alt="A template for a text message with placeholders for the recipients name, document and date"
|
|
|
|
|
|
width="554" height="97"
|
|
|
|
|
|
>
|
|
|
|
|
|
<img
|
2016-04-01 10:54:55 +01:00
|
|
|
|
src="/static/images/tour/{{ current_page }}.png"
|
|
|
|
|
|
width="554" height="97"
|
2016-04-04 16:51:45 +01:00
|
|
|
|
alt="A screenshot of a spreadsheet containing data about three people"
|
|
|
|
|
|
>
|
|
|
|
|
|
</picture>
|
2016-04-01 10:54:55 +01:00
|
|
|
|
</p>
|
2016-04-19 10:30:15 +01:00
|
|
|
|
<a href='{{ url_for('.tour', page=next_page) }}'>
|
2016-04-01 10:54:55 +01:00
|
|
|
|
Next
|
|
|
|
|
|
</a>
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|