Add link to .NET documentation

This commit is contained in:
Chris Hill-Scott
2018-11-05 15:17:07 +00:00
parent 3993e2cf28
commit c1bcfff895

View File

@@ -9,17 +9,21 @@
<div class="grid-row"> <div class="grid-row">
<div class="column-two-thirds"> <div class="column-two-thirds">
<h1 class="heading-large"> Documentation </h1> <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> <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"> <ul class="list list-bullet">
<li><a href="https://docs.notifications.service.gov.uk/java.html" target="_blank" rel="noopener">Java</a></li> {% for key, label in [
<li><a href="https://github.com/alphagov/notifications-net-client" target="_blank" rel="noopener">.NET</a></li> ('java', 'Java'),
<li><a href="https://docs.notifications.service.gov.uk/node.html" target="_blank" rel="noopener">Node JS</a></li> ('net', '.NET'),
<li><a href="https://docs.notifications.service.gov.uk/php.html" target="_blank" rel="noopener">PHP</a></li> ('node', 'Node JS'),
<li><a href="https://docs.notifications.service.gov.uk/python.html" target="_blank" rel="noopener">Python</a></li> ('php', 'PHP'),
<li><a href="https://docs.notifications.service.gov.uk/ruby.html" target="_blank" rel="noopener">Ruby</a></li> ('python', 'Python'),
</ul> ('ruby', 'Ruby'),
<p>You can also find out about <a href="{{ url_for('main.integration_testing')}}">integration testing</a> and the different types of API keys that you can use.</p> ] %}
<li><a href="https://docs.notifications.service.gov.uk/{{ key }}.html" target="_blank" rel="noopener">{{ label }}</a></li>
{% endfor %}
</ul>
<p>You can also find out about <a href="{{ url_for('main.integration_testing')}}">integration testing</a> and the different types of API keys that you can use.</p>
</div> </div>
</div> </div>