general work

- renamed nunjucks extension to njk
- removed old demo html files
- started to change CRLF to LF
- detail work on style definitions
- added structure for demo files
This commit is contained in:
Stephan 2018-04-30 19:09:17 +02:00
parent cf8fd24a85
commit c781f5c6c5
31 changed files with 1155 additions and 1641 deletions

23
source/pages/404.njk Normal file
View file

@ -0,0 +1,23 @@
<!-- index.njk -->
{% set pageId = "404" %}
{% set pageClass = "body__status" %}
{% extends "maintenance.njk" %}
{% block title %}404{% endblock %}
{% block head %}
{{ super() }}
{% 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 "partials/footer-status.njk" %}
{% endblock %}