This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/resources/templates/error/500.html

25 lines
776 B
HTML

<!DOCTYPE html>
<html lang="de" dir="ltr" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="UTF-8">
<title>e-commerce</title>
<link href="../static/css/ecom.css" rel="stylesheet" th:href="@{/css/ecom.css}"/>
</head>
<body>
<nav th:replace="fragments/header :: header">Header</nav>
<main>
<div class='content-width'>
<h1>Error 500</h1>
<div>
<p>Ein Fehler ist aufgetreten. Bitte versuche es später nocheinmal.</p>
<!-- animation from https://github.com/blairlee227/IlluStatus, licensed MIT -->
<img th:src="@{/img/error_generic_illustatus.svg}" />
</div>
</div>
<div class="vertical-spacer s"></div>
</main>
<footer th:replace="fragments/footer :: footer"></footer>
</body>
</html>