aboutsummaryrefslogtreecommitdiff
path: root/juick-spring-www/src/main/webapp/WEB-INF/templates/views/index.html
blob: 24aa94720a25af1c17d3be40e8a17fa0d157a606 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
      xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
      layout:decorate="~{layout/mainLayout}">
<head>
    <title th:if="${#authorization.expression('isAuthenticated()')}" th:text="${title}">Page title</title>
</head>

<body>
<th:block layout:fragment="content">
    <div th:replace="views/partial/blog_postform"></div>
    <div th:replace="views/partial/blog_messages"></div>
    <div th:replace="views/partial/blog_paginator"></div>
</th:block>

<aside id="column">
    <p layout:fragment="column" th:replace="views/partial/homecolumn">Main side column</p>
</aside>

</body>
</html>