hello.html 548 B

123456789101112131415161718
  1. <html xmlns:th="http://www.thymeleaf.org">
  2. <head th:include="layout :: htmlhead" th:with="title='Hello'"></head>
  3. <body>
  4. <div th:replace="layout :: navbar">(navbar)</div>
  5. <div class="container">
  6. <div class="starter-template">
  7. <h1>Spring MVC / Thymeleaf / Bootstrap</h1>
  8. <p class="lead" th:text="${greeting}">(greeting)</p>
  9. <p>The current time is <span th:text="${currentTime}">(time)</span></p>
  10. </div>
  11. </div>
  12. <div th:include="layout :: footer" id="footer">(footer)</div>
  13. </body>
  14. </html>