Files
notifications-admin/app/templates/views/documentation.html
Chris Hill-Scott b1832a4c43 Remove link to integration testing page
This page has ben deprecated.
2018-11-06 17:25:33 +00:00

30 lines
740 B
HTML

{% extends "withoutnav_template.html" %}
{% block per_page_title %}
Documentation
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-large"> Documentation </h1>
<p>Integrate with the GOV.UK Notify API using one of our clients (links open in a new tab):</p>
<ul class="list list-bullet">
{% for key, label in [
('java', 'Java'),
('net', '.NET'),
('node', 'Node JS'),
('php', 'PHP'),
('python', 'Python'),
('ruby', 'Ruby'),
] %}
<li><a href="https://docs.notifications.service.gov.uk/{{ key }}.html" target="_blank" rel="noopener">{{ label }}</a></li>
{% endfor %}
</ul>
</div>
</div>
{% endblock %}