summaryrefslogtreecommitdiff
path: root/spring-boot/07-thymeleaf-common-theme/src/main/resources/templates/index.html
blob: b2f59f2347f85090282f0bd90f3d4ea382945ffc (plain)
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org" th:replace="~{layout/main :: layout(title='Welcome', content=~{::main})}">

<body>
    <main>
        <p>Hello! This is the home page content.</p>
        <p>Use the navigation links to explore other pages.</p>
    </main>
</body>

</html>