Files
notifications-admin/app/templates/views/agreement/agreement-signed.html
Chris Hill-Scott 734666ee53 Refactor agreement pages into includes
So we can re-use the same content in multiple places.
2019-05-01 08:51:34 +01:00

26 lines
570 B
HTML

{% extends "withoutnav_template.html" %}
{% from "components/sub-navigation.html" import sub_navigation %}
{% block per_page_title %}
GOV.UK Notify data sharing and financial agreement
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-one-third">
{{ sub_navigation(navigation_links) }}
</div>
<div class="column-two-thirds">
<h1 class="heading-large">
GOV.UK Notify data sharing and financial agreement
</h1>
{% include 'views/agreement/_agreement-signed.html' %}
</div>
</div>
{% endblock %}