blob: 9752ff2c7ca770f486a582dbebf417c4ad86424d [file] [log] [blame]
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-4.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
<head th:replace="header.thyme::head"/>
<body onload="prettyPrint()">
<div id="wrap">
<div th:replace="menu.thyme::menu"/>
<div class="container">
<div class="page-header">
<h1 th:text='${content.title}'>title</h1>
</div>
<p><em th:text='${#dates.format(content.date,"yyyy-MM-dd")}'>date</em></p>
<p th:utext='${content.body}'>body</p>
<hr />
</div>
</div>
<div th:replace="footer.thyme::footer"></div>
</body>
</html>