diff --git a/src/main/java/Team5/SmartTowns/Organisation/organisationControllers.java b/src/main/java/Team5/SmartTowns/Organisation/organisationControllers.java
index a5927d4cd7ff6e4de3c115e6d8ff86bf5adb05ef..638e97a74e021da8fcde3f58dd17596ffde437fe 100644
--- a/src/main/java/Team5/SmartTowns/Organisation/organisationControllers.java
+++ b/src/main/java/Team5/SmartTowns/Organisation/organisationControllers.java
@@ -19,7 +19,7 @@ import java.util.List;
 public class organisationControllers {
     @GetMapping("/localauthorities")
     public ModelAndView getLocalAuthoritiesPage(){
-        ModelAndView modelAndView = new ModelAndView("WorkWith/local-authorities.html");
+        ModelAndView modelAndView = new ModelAndView("local-authorities");
         return modelAndView;
     }
     @GetMapping("/businesses")
diff --git a/src/main/resources/WorkWith/local-authorities.html b/src/main/resources/templates/WorkWith/local-authorities.html
similarity index 50%
rename from src/main/resources/WorkWith/local-authorities.html
rename to src/main/resources/templates/WorkWith/local-authorities.html
index 1ee0ecc9a514154645c3bf8ab3902b9e27e09076..abeb1a1143d7668fcff7e4108830fc789ed4a285 100644
--- a/src/main/resources/WorkWith/local-authorities.html
+++ b/src/main/resources/templates/WorkWith/local-authorities.html
@@ -3,19 +3,19 @@
 <head>
     <meta charset="UTF-8">
     <title>Local Authorities</title>
-    <link rel="stylesheet" href="../static/css/templatingstyle.css">
+    <link rel="stylesheet" href="../../static/css/templatingstyle.css">
 </head>
-<header th:insert="~{/towns/Templating.html::header}"></header>
+<header th:insert="~{/fragments/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>
+        <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="~{/fragments/Templating.html::footer}"></footer>
 </body>
 </html>
\ No newline at end of file
diff --git a/src/main/resources/templates/local-authorities.html b/src/main/resources/templates/local-authorities.html
index bdc00cdb181cebca878e56f0aa7711c7dc313c4e..50b5fa8bfb70d5d57fe7403bf2427f96a39a6997 100644
--- a/src/main/resources/templates/local-authorities.html
+++ b/src/main/resources/templates/local-authorities.html
@@ -6,7 +6,7 @@
     <link rel="stylesheet" th:href="@{css/localAuthorityPageStyle.css}">
     <link rel="stylesheet" th:href="@{css/templatingstyle.css}">
 </head>
-<header th:insert="~{/towns/Templating.html::header}"></header>
+<header th:insert="~{/fragments/Templating.html::header}"></header>
 <body>
 <h1>Local Authorities</h1>
 <div id="councils">
@@ -15,6 +15,6 @@
     </ul>
 </div>
 <button><a href="/localForm" id="authority">Local Authorities please enter here</a></button>
-<footer th:insert="~{/towns/Templating.html::footer}"></footer>
+<footer th:insert="~{/fragments/Templating.html::footer}"></footer>
 </body>
 </html>
\ No newline at end of file