From df0a99330ad542bb31551a395d73e3c4017149e4 Mon Sep 17 00:00:00 2001 From: Colin B Date: Fri, 3 Nov 2023 10:05:16 +0000 Subject: [PATCH] Add original footer --- app/templates/base.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/app/templates/base.html b/app/templates/base.html index eaf63f0a7..955fe12c6 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -143,6 +143,28 @@ {% endwith %} {% endblock %} +{% block footer %} + {{ govukFooter({ + 'meta': { + 'items': [ + { + 'href': url_for('main.accessibility'), + 'text': "Accessibility" + }, + { + 'href': url_for('main.cookies'), + 'text': "Cookies" + }, + { + 'href': url_for('main.privacy'), + 'text': "Privacy" + } + ], + 'html': 'Built by ' + config['DEPARTMENT_NAME'] + '' + } + }) }} +{% endblock %} + {% block bodyEnd %}