first testing with gutenberg render engine

This commit is contained in:
Paul Spooren 2018-01-10 00:24:44 +01:00
parent bbb515bf4e
commit 9141aced4e
44 changed files with 216 additions and 168 deletions

88
templates/index.html Executable file → Normal file
View file

@ -1,17 +1,73 @@
{% extends "skeleton.html.j2" %}
{% block content %}
<h3>Willkommen im Reudnetz</h3>
<p>
Wir bieten kostengünstige Internetanschlüsse in Volkmarsdorf, Reudnitz und Neustadt-Neuschönefeld an.
Gemeinschaftlich organisiert.
</p>
<!DOCTYPE HTML>
<html lang="de-de" dir="ltr">
<head>
{% block title %}
<title>{{ section.title }} - {{ config.title }}</title>
{% endblock title %}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="index,follow" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="{{ get_url(path="style") }}/fitgrid.css" />
<link rel="stylesheet" type="text/css" href="{{ get_url(path="style") }}/styles.css" />
</head>
<body>
<div class="center">
<div class="row head"/>
<div class="fg12 legal fg-no-mobile">
<a href="{{ get_url(path="/impressum") }}">Impressum</a> | <a href="{{ get_url(path="/datenschutz") }}">Datenschutzhinweis</a>
</div>
<div class="fg6">
<h1>Reudnetz</h1>
</div>
<div class="fg6">
<h2>Internet für Leipzigs Osten</h2>
</div>
</div>
<div class="row nav">
<div class="fg12">
<ul>
{% block nav %}
{% set section = get_section(path="_index.md") %}
{% for page in section.pages %}
<li>
<a href="{{ get_url(path=page.path) }}" title="{{ page.title }}">{{ page.title }}</a>
<li>
{% endfor %}
{% endblock nav %}
</ul>
</div>
</div>
<div class="row content">
<div class="fg8">
{% block content %}
{{ section.content | safe }}
{% endblock content %}
<p>Was unsere Anschlüsse ausmacht:
<ul>
<li>ein Mitspracherecht an der Zukunft des Providers</li>
<li>Transparenz auf allen Ebenen</li>
<li>symmetrische Anschlüsse</li>
<li>günstige Preise</li>
<li>fristlos zum Monatsende kündbar</li>
</ul>
{% endblock %}
</div>
<div class="margin fg4">
{% block seitenleiste %}
<h3>Kontakt</h3>
<p>
mail [at] reudnetz [dot] org<br />
GPG-Key: <a href="0x1D7AE62C.asc">0x1D7AE62C</a>
</p>
<div class="margin" >
Fingerprint: <br />
C2B5 52B8 9C17 7ED0 9E83 9582 E177 B5B2 1D7A E62C
</div>
<!-- <p>Servicetelefon</p>
nur in dringenden Notfällen benutzen:
<p>000 00000 000</p> -->
{% endblock seitenleiste %}
</div>
</div>
<div class="row fg-no-desktop">
<div class="fg12 legal">
<a href="impressum.html">Impressum</a> | <a href="datenschutz.html">Datenschutzhinweis</a>
</div>
</div>
</div>
</body>
</html>