halo-theme-joe3.0/templates/page.html

11 lines
303 B
HTML
Raw Normal View History

2023-06-14 17:55:10 +08:00
<!DOCTYPE html>
<html
xmlns:th="https://www.thymeleaf.org"
th:replace="~{layout :: html(head = null,content = ~{::content})}"
>
<th:block th:fragment="content">
<h1 th:text="${singlePage.spec.title}"></h1>
<article th:utext="${singlePage.content.content}"></article>
</th:block>
</html>