Files
spring-boot/spring-boot-samples/spring-boot-sample-devtools/src/main/resources/templates/layout.html
2019-03-27 11:35:54 +00:00

13 lines
346 B
HTML

<!DOCTYPE html>
<html xmlns:th="https://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout">
<head>
<title>Layout</title>
<link rel="stylesheet" th:href="@{/css/application.css}" />
</head>
<body>
<h1 layout:fragment="header">Header</h1>
<div layout:fragment="content" class="content">Content</div>
</body>
</html>