aboutsummaryrefslogtreecommitdiff
path: root/juick-spring-www/src/main/webapp/WEB-INF/templates/postNotFound.html
blob: 4162aa8b946f1d5f18456da0024c7cb22119186a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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}">Страница не найдена</title>
</head>
<body>

<section layout:fragment="content">
    <div id="pagetitle">
        <h1 th:text="#{error.pageNotFound}">Страница не найдена</h1>
    </div>

    <div id="wrapper">
        <p th:text="#{errors.pageNotFound.extended(${messageId})}">Похоже, пользователь удалил страницу, возможна она и не была создана.</p>
    </div>
    <div>
        <a th:href="@{/}" href="/"><span th:text="#{link.returnToMain}">Вернуться на главную</span></a>
    </div>
</section>
</body>
</html>