Switched H2 to server-mode and made the console available in the app
[examples/facebook-app] / src / main / webapp / thymeleaf / home.html
1 <!DOCTYPE html>
2 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
3   <head>
4     <title>Home</title>
5   </head>
6   <body>
7     <h1>Hello, <span th:text="${user.name}">Some User</span>!</h1>
8     <ul>
9       <li><a href="connect/facebookConnected.html" th:href="@{/connect/facebook.html}">Show connection-status</a></li>
10       <li><a href="profile.html" th:href="@{/profile.html}">Show public profile-data</a></li>
11       <li><a href="#" th:href="@{/h2-console}">Connect to the H2-console</a></li>
12     </ul>
13   </body>
14 </html>