mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-08 22:53:12 -04:00
* Updated header and footer * Updated fonts * Moved files around and updated gulpfile to correct the build process when it goes to production * Adjusted grid templating * Added images to assets * Update app/templates/components/uk_components/footer/template.njk Co-authored-by: Steven Reilly <stvnrlly@users.noreply.github.com>
20 lines
597 B
HTML
20 lines
597 B
HTML
{% extends "withnav_template.html" %}
|
|
|
|
{% block service_page_title %}
|
|
Previous versions
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
<h1 class="font-body-2xl margin-bottom-3">Previous versions</h1>
|
|
<div class="govuk-grid-row">
|
|
{% for template in versions %}
|
|
{% with show_title=True %}
|
|
{% include 'views/templates/_template_history.html' %}
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</div>
|
|
<p>
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for(".choose_template", service_id=current_service.id) }}">Back to current templates</a>
|
|
</p>
|
|
{% endblock %}
|