Skip to content
Snippets Groups Projects
Commit 08b7a18a authored by Rhys Nute's avatar Rhys Nute
Browse files

Merge branch '15' into 'main'

Created initial files with basic entries for DragonsTale trail, including added information to skeleton pages for each town.

See merge request !6
parents 50881e91 f0e93c7d
1 merge request!6Created initial files with basic entries for DragonsTale trail, including added information to skeleton pages for each town.
Showing
with 119 additions and 3 deletions
......@@ -9,8 +9,6 @@ import org.springframework.web.servlet.ModelAndView;
import org.springframework.stereotype.Controller;
@Controller
public class WebpageController {
@GetMapping("/Caerleon")
public ModelAndView getCaerleonPage(){
ModelAndView modelAndView = new ModelAndView("towns/caerleon");
......
package Team5.SmartTowns.trailcontrollers;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class DragonsTale {
@GetMapping("/dragonstale")
public ModelAndView getDragonsTale(){
ModelAndView modelAndView = new ModelAndView("src/main/resources/templates/towns/trails/dragonstale/index.html");
return modelAndView;
}
}
......@@ -5,7 +5,17 @@
<title>Caerleon</title>
</head>
<body>
<h1> Welcome to the town of Caerleon.</h1>
<div>
<h1> Welcome to the town of Caerleon.</h1>
</div>
<div>
<h2>Explore trails around Caerleon</h2>
<ul>
<li href="">Welsh History</li>
<li>Super</li>
</ul>
</div>
</body>
</html>
\ No newline at end of file
src/main/resources/templates/towns/trails/dragonstale/dragonstalehome.png

7.84 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>A Dragon's Tale</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div class="centre">
<h1> Welcome, to a dragon's tale! </h1>
<img src="dragonstalehome.png" alt="Image of a dragon">
<h2> Discover the mystery of the dragon, track its location and follow it throughout the town of (thymeleaf element) to discover a prize! </h2>
</div>
<div class="centre">
<p>
Adventurers... embark through these mystical historical landmarks and scenery, to ultimately discover the lair of the dragon.
Legend has it that within this ominous lair, mighty dragons, guardians of ancient wisdom and treasures untold lay....
</p>
</div>
<div class="centre">
<h3>Begin your hunt!</h3>
<button type="button" id="begin">Click here!</button>
</div>
</body>
</html>
\ No newline at end of file
function onClick(){
var beginButton = document.getElementById("begin");
if (beginButton === true){
}
}
\ No newline at end of file
.centre{
display: flex;
flex-direction: column;
text-align: center;
margin-left: auto;
margin-right: auto;
width: 50%;
background-color: antiquewhite;
}
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Checkpoint One <filler></title>
</head>
<body>
<!-- constant use of divs used to separate important sections of the website that'll be maintained throughout the project -->
<div>
<h1>Checkpoint one... The Beginning of an adventure!</h1>
</div>
<div>
<!-- Insert a thymeleaf attribute here to layer this image onto a background of the town-->
<img src="dragonone.png" alt="Image of a Red Dragon">
</div>
<div>
<p> Enter a story about the checkpoint here.....</p>
</div>
<div>
<p> Here goes where the user must go next. Hints, etc. </p>
</div>
<div>
<p> Greyed out image of something that can be dynamically altered upon scanning QR code.</p>
</div>
<div>
<p> Here a total progress bar...</p>
</div>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The Roman Empire</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment