21 lines
662 B
HTML
21 lines
662 B
HTML
<!DOCTYPE html>
|
|
<html lang="en"
|
|
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
|
|
layout:decorator="default" xmlns:th="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<div class="container" layout:fragment="content">
|
|
<section id="services">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-12 text-center">
|
|
<h2 class="section-heading text-uppercase"><span th:text="${error}"></span></h2>
|
|
<a href="/"><h3>Вернуться на главную</h3></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</body>
|
|
</html> |