mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-05 22:48:24 -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>
27 lines
837 B
HTML
27 lines
837 B
HTML
{% extends "withnav_template.html" %}
|
|
{% from "components/form.html" import form_wrapper %}
|
|
{% from "components/uk_components/button/macro.njk" import govukButton %}
|
|
{% from "components/branding-preview.html" import email_branding_preview %}
|
|
|
|
{% block service_page_title %}
|
|
Preview email branding
|
|
{% endblock %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<h1 class="font-body-2xl margin-bottom-3">Preview email branding</h1>
|
|
<div class="govuk-grid-row">
|
|
<div class="govuk-grid-column-full">
|
|
{{ email_branding_preview(form.branding_style.data) }}
|
|
{% call form_wrapper(action=action) %}
|
|
<div class="form-group">
|
|
{{ form.hidden_tag() }}
|
|
<div class="page-footer">
|
|
{{ govukButton({ "text": "Save" }) }}
|
|
</div>
|
|
</div>
|
|
{% endcall %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|