Fix Error Pages class attributes

This commit is contained in:
CodeSteak 2020-01-12 16:02:10 +01:00
parent 96a1cc826d
commit 5fd6cf8827
2 changed files with 16 additions and 20 deletions

View File

@ -7,18 +7,16 @@
</head>
<body>
<nav th:replace="fragments/header :: header">Header</nav>
<main>
<div class='hero'>
<div class='content-width'>
<h1>Error 404</h1>
<div class="">
<p>Ein Fehler ist aufgetreten. Die gewünschte Ressource konnte nicht gefunden werden.</p>
<!-- animation from https://github.com/blairlee227/IlluStatus, licensed MIT -->
<img th:src="@{/img/error_404_illustatus.svg}" />
</div>
<main class='hero'>
<div class='content-width'>
<h1>Error 404</h1>
<div>
<p>Ein Fehler ist aufgetreten. Die gewünschte Ressource konnte nicht gefunden werden.</p>
<!-- animation from https://github.com/blairlee227/IlluStatus, licensed MIT -->
<img th:src="@{/img/error_404_illustatus.svg}" />
</div>
<div class="vertical-spacer s"></div>
</div>
<div class="vertical-spacer s"></div>
</main>
<footer th:replace="fragments/footer :: footer"></footer>
</body>

View File

@ -7,18 +7,16 @@
</head>
<body>
<nav th:replace="fragments/header :: header">Header</nav>
<main>
<div class='hero'>
<div class='content-width'>
<h1>Error 500</h1>
<div class="">
<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>
<main class='hero'>
<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 class="vertical-spacer s"></div>
</div>
<div class="vertical-spacer s"></div>
</main>
<footer th:replace="fragments/footer :: footer"></footer>
</body>