* 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
989 B
Text
25 lines
989 B
Text
<!-- page-error-500.njk -->
|
|
{% set pageId = "500" %}
|
|
{% set pageClass = "body__status" %}
|
|
|
|
{% extends "hippie/demo-maintenance.njk" %}
|
|
|
|
{% block title %}500{% 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>500</h1>
|
|
<h3>Server-Fehler</h3>
|
|
<p>Allgemeiner Server Fehler!!! <dfn>Internal Server Error</dfn></p>
|
|
<blockquote cite="https://de.wikipedia.org/wiki/HTTP-Statuscode#5xx_%E2%80%93_Server-Fehler">
|
|
<p>Dies ist ein „Sammel-Statuscode“ für unerwartete Serverfehler.</p>
|
|
<p class="quote-author"><a class="line-link" href="https://de.wikipedia.org/wiki/HTTP-Statuscode#5xx_%E2%80%93_Server-Fehler">Wikipedia</a></p>
|
|
</blockquote>
|
|
</main>
|
|
{% include "hippie/partials/footer-status.njk" %}
|
|
{% endblock %}
|