diff --git a/src/main/resources/templates/towns.html b/src/main/resources/templates/towns.html index 50b94596c55bd2f61f78007090809c3915f12756..cdd805cb010f98c0a99c84cf6fed71d9cec2c62e 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>