source: trip-planner/src/main/resources/templates/location.html@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 368 bytes
Line 
1<!DOCTYPE html>
2<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
3<head>
4 <meta charset="UTF-8">
5 <title>Details about location</title>
6</head>
7<body>
8<bold th:text="${location.get().name}"> </bold>
9<p th:text="${location.get().getAddress()}"></p>
10<br>
11<p th:text="${location.get().getDescription()}"></p>
12
13</body>
14</html>
Note: See TracBrowser for help on using the repository browser.