From c582d4f21afafe98bb0e99107dd8b9af41201d6e Mon Sep 17 00:00:00 2001
From: Connor <brockcc1@cardiff.ac.uk>
Date: Thu, 23 Nov 2023 12:27:12 +0000
Subject: [PATCH] Added barebones skeleton HTML pages for controller
 integration

---
 src/main/resources/index.html            | 11 +++++++++++
 src/main/resources/towns/caerleon.html   | 11 +++++++++++
 src/main/resources/towns/caerphilly.html | 10 ++++++++++
 src/main/resources/towns/risca.html      | 11 +++++++++++
 4 files changed, 43 insertions(+)
 create mode 100644 src/main/resources/index.html
 create mode 100644 src/main/resources/towns/caerleon.html
 create mode 100644 src/main/resources/towns/caerphilly.html
 create mode 100644 src/main/resources/towns/risca.html

diff --git a/src/main/resources/index.html b/src/main/resources/index.html
new file mode 100644
index 00000000..489349d1
--- /dev/null
+++ b/src/main/resources/index.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Home Page</title>
+</head>
+<body>
+<h1>Welcome to the home page</h1>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/src/main/resources/towns/caerleon.html b/src/main/resources/towns/caerleon.html
new file mode 100644
index 00000000..4b53c334
--- /dev/null
+++ b/src/main/resources/towns/caerleon.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Caerleon</title>
+</head>
+<body>
+<h1> Welcome to the town of Caerleon.</h1>
+
+</body>
+</html>
\ No newline at end of file
diff --git a/src/main/resources/towns/caerphilly.html b/src/main/resources/towns/caerphilly.html
new file mode 100644
index 00000000..edf5af35
--- /dev/null
+++ b/src/main/resources/towns/caerphilly.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Caerphilly</title>
+</head>
+<body>
+<h1> Welcome to the town of Caerphilly.</h1>
+</body>
+</html>
\ No newline at end of file
diff --git a/src/main/resources/towns/risca.html b/src/main/resources/towns/risca.html
new file mode 100644
index 00000000..3e4e9caf
--- /dev/null
+++ b/src/main/resources/towns/risca.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Risca</title>
+</head>
+<body>
+<h1> Welcome to the town of Risca.</h1>
+
+</body>
+</html>
\ No newline at end of file
-- 
GitLab