<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Towns</title> <link rel="stylesheet" th:href="@{css/landmarkFormStyle.css}"> <link rel="stylesheet" th:href="@{css/templatingstyle.css}"> </head> <header th:insert="~{/towns/Templating.html::header}"></header> <body> <h3>Supporting Local Businesses</h3> <p>Giving local businesses a voice in the community</p> <h3>Empowering Community Spirit</h3> <div> <ul th:each="towns:${towns}"> <li th:text="${towns}"></li> </ul> </div> <a href="/townsForm"><button id="submit">Towns log in here</button></a> </body> <footer th:insert="~{/towns/Templating.html::footer}"></footer> </html>