Added a controller, that lists the pages, the user is an adminitrator of
[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       <li><a href="permissions.html" th:href="@{/permissions.html}">Manage permissions</a></li>
13       <li><a href="pages.html" th:href="@{/pages.html}">Show pages, that you are an administrator of</a></li>
14     </ul>
15   </body>
16 </html>