* restructure of all templates and pages * fixed gulp reloading of pages * restructured style elements accroding to HTML5.2 doc * changed basic line-height * added positional styles * added demo_module styles
25 lines
1.1 KiB
Text
25 lines
1.1 KiB
Text
<!-- page-error-404.njk -->
|
|
{% set pageId = "404" %}
|
|
{% set pageClass = "body__status" %}
|
|
|
|
{% extends "hippie/demo-maintenance.njk" %}
|
|
|
|
{% block title %}404{% endblock %}
|
|
{% block head %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" type="text/css" media="all" href="../../css/demo_basic.css"/>
|
|
<!-- <link rel="stylesheet" type="text/css" media="print" href="./css/print.css"/> -->
|
|
{% endblock %}
|
|
|
|
{% block body_content %}
|
|
<main class="main__site">
|
|
<h1>404</h1>
|
|
<h3>Client-Fehler</h3>
|
|
<p>Hier ist nichts. <dfn>Not Found</dfn></br>
|
|
<blockquote cite="https://de.wikipedia.org/wiki/HTTP-Statuscode#4xx_.E2.80.93_Client-Fehler">
|
|
<p>Die angeforderte Ressource wurde nicht gefunden. Dieser Statuscode kann ebenfalls verwendet werden, um eine Anfrage ohne näheren Grund abzuweisen. Links, welche auf solche Fehlerseiten verweisen, werden auch als Tote Links bezeichnet.</p>
|
|
<p class="quote_source"><a href="https://de.wikipedia.org/wiki/HTTP-Statuscode#4xx_.E2.80.93_Client-Fehler">Wikipedia</a></p>
|
|
</blockquote>
|
|
</main>
|
|
{% include "hippie/partials/footer-status.njk" %}
|
|
{% endblock %}
|