blob: 9d763feb9fc121d079e2e36688806ecc403bbf9a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!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:text="#{error.pageNotFound}">Page not found</title>
</head>
<body>
<section id="content">
<article layout:fragment="content">
<h1 th:text="#{error.pageNotFound}">Page not found</h1>
<p th:text="#{error.pageNotFound.description}">Probably, user deleted this post, or this page never existed.</p>
</article>
</section>
<p layout:fragment="column" th:replace="views/partial/homecolumn">Main side column</p>
</body>
</html>
|