From 3d4a11fdef2380f1f4a498f894a9344cd39fd9f5 Mon Sep 17 00:00:00 2001 From: Rhys Nute <nuterd@cardiff.ac.uk> Date: Mon, 11 Dec 2023 19:30:46 +0000 Subject: [PATCH] sorted issues --- src/main/resources/templates/towns.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/main/resources/templates/towns.html b/src/main/resources/templates/towns.html index 50b94596..cdd805cb 100644 --- a/src/main/resources/templates/towns.html +++ b/src/main/resources/templates/towns.html @@ -3,17 +3,15 @@ <head> <meta charset="UTF-8"> <title>Towns</title> - <link rel="stylesheet" href="../static/css/templatingstyle.css"> + <link rel="stylesheet" th:href="@{css\templatingstyle.css}"> </head> <header th:insert="~{/towns/Templating.html::header}"></header> <body> -<h3>Developing a Thriving Town</h3> <h3>Supporting Local Businesses</h3> <p>Giving local businesses a voice in the community</p> <h3>Empowering Community Spirit</h3> -<h3>Creating the towns Identity</h3> <div> - <ul th:each="towns:${addTown}"> + <ul th:each="towns:${towns}"> <li th:text="${towns}"></li> </ul> </div> -- GitLab