mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-08 18:13:11 -04:00
30 lines
781 B
HTML
30 lines
781 B
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">Start with templates</h2>
|
|||
|
|
<p>
|
|||
|
|
Set up a template like this:
|
|||
|
|
</p>
|
|||
|
|
<p>
|
|||
|
|
<img
|
|||
|
|
src="/static/images/tour/{{ current_page }}.png"
|
|||
|
|
width="554" height="97"
|
|||
|
|
alt="A template for a text message with placeholders for the recipients name, document and date"
|
|||
|
|
>
|
|||
|
|
</p>
|
|||
|
|
<a href='{{ url_for('.tour', service_id=service_id, page=next_page) }}'>
|
|||
|
|
Next
|
|||
|
|
</a>
|
|||
|
|
{% endcall %}
|
|||
|
|
|
|||
|
|
{% endblock %}
|