mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-06 17:09:00 -04:00
This is for static content pages and makes sure they always have the right column widths and sub navigation.
27 lines
817 B
HTML
27 lines
817 B
HTML
{% extends "content_template.html" %}
|
|
|
|
{% block per_page_title %}
|
|
Documentation
|
|
{% endblock %}
|
|
|
|
{% block content_column_content %}
|
|
|
|
<h1 class="heading-large">Documentation</h1>
|
|
<p>Use the GOV.UK Notify API to send messages automatically.</p>
|
|
<h2 class="heading-medium">Clients</h2>
|
|
<p>Choose a client to integrate our API with your web application or back-office system. Links to documentation 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>
|
|
|
|
{% endblock %}
|