Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • d1656298/client-project
  • d1634883/client-project
2 results
Show changes
Commits on Source (2)
......@@ -3,13 +3,20 @@ package Team5.SmartTowns.trailcontrollers;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
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");
ModelAndView modelAndView = new ModelAndView("trails/dragonstale/index");
return modelAndView;
}
// @RequestMapping("/dragonstale")
// public ModelAndView thymeleafInteration(){
//
//
// }
}
......@@ -20,6 +20,17 @@
</p>
</div>
<div class="centre" id="landmarkList">
<ul>
<li> Landmark 1 </li>
<li> Landmark 2 </li>
<li> Larkmark 3 </li>
<li> Larkmark 4 </li>
<li> Larkmark 5 </li>
<li> Larkmark 6 </li>
</ul>
</div>
<div class="centre">
<h3>Begin your hunt!</h3>
<button type="button" id="begin">Click here!</button>
......
......@@ -6,4 +6,11 @@
margin-right: auto;
width: 50%;
background-color: antiquewhite;
}
#landmarkList.centre{
text-align: left;
border-style: solid;
border-width: 2px;
border-color: #FF7F50;
}
\ No newline at end of file