Moved the embedded default-templates into the classpath
[examples/facebook-app] / src / main / resources / thymeleaf / home.html
diff --git a/src/main/resources/thymeleaf/home.html b/src/main/resources/thymeleaf/home.html
new file mode 100644 (file)
index 0000000..f7649e5
--- /dev/null
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
+  <head>
+    <title>Home</title>
+  </head>
+  <body>
+    <h1>Hello, <span th:text="${user.name}">Some User</span>!</h1>
+    <ul>
+      <li><a href="connect/facebookConnected.html" th:href="@{/connect/facebook.html}">Show connection-status</a></li>
+      <li><a href="profile.html" th:href="@{/profile.html}">Show public profile-data</a></li>
+      <li><a href="#" th:href="@{/h2-console}">Connect to the H2-console</a></li>
+    </ul>
+  </body>
+</html>