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

View file

@ -1,22 +0,0 @@
<!-- index.nunjucks -->
{% set pageId = "404" %}
{% extends "maintenance.nunjucks" %}
{% block title %}index{% endblock %}
{% block head %}
{{ super() }}
<link rel="stylesheet" type="text/css" media="all" href="./css/maintenance.css"/>
{% endblock %}
{% block body_content %}
<div class="main_center">
<h1>404</h1>
<p>Hier ist nichts.</p>
<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>
</div>
{% include "partials/footer-status.nunjucks" %}
{% endblock %}