aboutsummaryrefslogtreecommitdiff
path: root/juick-spring-www/src/main/webapp/WEB-INF/templates/index.html
blob: 4cd32be3cf837fa4022cbd1c9345a6099df1eb43 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
      xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
      layout:decorate="~{layout/mainLayout}">
<head>
    <title>Главная страница</title>
</head>

<body>
<section layout:fragment="content">
    <p>Главная страница !</p>
</section>
<aside id="column">
    <p layout:fragment="column"></p>
</aside>
</body>
</html>