From c988cdd29417330c69ca9d05523fb68ecf053fad Mon Sep 17 00:00:00 2001 From: Rhys Nute <nuterd@cardiff.ac.uk> Date: Wed, 6 Dec 2023 17:29:29 +0000 Subject: [PATCH] added local authorities page --- .../resources/templates/towns/local-authorities.html | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/resources/templates/towns/local-authorities.html b/src/main/resources/templates/towns/local-authorities.html index 1af344b4..83cd7c4f 100644 --- a/src/main/resources/templates/towns/local-authorities.html +++ b/src/main/resources/templates/towns/local-authorities.html @@ -3,11 +3,19 @@ <head> <meta charset="UTF-8"> <title>Local Authorities</title> - <link rel="stylesheet" th:href="@{/css/templatingstyle.css}"> + <link rel="stylesheet" href="../../static/css/templatingstyle.css"> </head> <header th:insert="~{/towns/Templating.html::header}"></header> <body> <h1>Local Authorities</h1> +<div id="councils"> + <p>Caerphilly County Borough Council,<br>Tredomen Park,<br> Ystrad Mynach,<br> Hengoed,<br> CF82 7PG</p> + <a href="https://www.caerphilly.gov.uk/main.aspx?lang=en-GB">Caerphilly County Borough Council Website</a> + <p>Risca Town Council,<br>Risca Palace Library,<br>Unit B,<br>75 Tredegar Street,<br>Risca,<br>NP11 6BW</p> + <a href="https://www.riscatowncouncil.org.uk/">Risca Town Council Website</a> + <p>Penarth Town Council West House,<br>Stanwell Road,<br>Penarth,<br> CF64 2YG</p> + <a href="https://www.penarthtowncouncil.gov.uk/your-council/">Penarth Town Council Website</a> +</div> <footer th:insert="~{/towns/Templating.html::footer}"></footer> </body> </html> \ No newline at end of file -- GitLab