From ae7e0dd581f744fe343ead2068e66c5a3f0d38af Mon Sep 17 00:00:00 2001 From: Rhys Nute <nuterd@cardiff.ac.uk> Date: Wed, 6 Dec 2023 13:27:14 +0000 Subject: [PATCH] added local authorities --- .../templates/towns/local-authorities.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/main/resources/templates/towns/local-authorities.html diff --git a/src/main/resources/templates/towns/local-authorities.html b/src/main/resources/templates/towns/local-authorities.html new file mode 100644 index 00000000..1af344b4 --- /dev/null +++ b/src/main/resources/templates/towns/local-authorities.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Local Authorities</title> + <link rel="stylesheet" th:href="@{/css/templatingstyle.css}"> +</head> +<header th:insert="~{/towns/Templating.html::header}"></header> +<body> +<h1>Local Authorities</h1> +<footer th:insert="~{/towns/Templating.html::footer}"></footer> +</body> +</html> \ No newline at end of file -- GitLab