From 6464aaa8419c280b353cd943e44f8b09d831da64 Mon Sep 17 00:00:00 2001 From: Connor <brockcc1@cardiff.ac.uk> Date: Wed, 13 Dec 2023 21:54:30 +0000 Subject: [PATCH] Found issues in another Thymeleaf template too -- again, committed and pushed to quickly move forward. --- src/main/resources/templates/local-authorities.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/templates/local-authorities.html b/src/main/resources/templates/local-authorities.html index bdc00cdb..05d4701e 100644 --- a/src/main/resources/templates/local-authorities.html +++ b/src/main/resources/templates/local-authorities.html @@ -6,7 +6,7 @@ <link rel="stylesheet" th:href="@{css/localAuthorityPageStyle.css}"> <link rel="stylesheet" th:href="@{css/templatingstyle.css}"> </head> -<header th:insert="~{/towns/Templating.html::header}"></header> +<header th:insert="fragments/Templating.html :: header"></header> <body> <h1>Local Authorities</h1> <div id="councils"> @@ -15,6 +15,6 @@ </ul> </div> <button><a href="/localForm" id="authority">Local Authorities please enter here</a></button> -<footer th:insert="~{/towns/Templating.html::footer}"></footer> +<div th:insert="fragments/Templating.html :: footer"></div> </body> </html> \ No newline at end of file -- GitLab