1
0
Fork 0
website/templates/index.html

71 lines
2.2 KiB
HTML
Raw Permalink Normal View History

2018-01-15 18:07:59 +01:00
{% set root_section = get_section(path="_index.md") %}
<!DOCTYPE HTML>
<html lang="de-de" dir="ltr">
<head>
<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">
2018-01-15 18:07:59 +01:00
<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">
2018-01-15 18:07:59 +01:00
<a href="{{ get_url(path="impressum") }}">Impressum</a> | <a href="{{ get_url(path="/datenschutz") }}">Datenschutzhinweis</a>
</div>
<div class="fg6">
2018-01-15 18:07:59 +01:00
<a href="{{ get_url(path="/") }}"><h1>Reudnetz</h1></a>
</div>
<div class="fg6">
<h2>Internet für Leipzigs Osten</h2>
</div>
</div>
<div class="row nav">
<div class="fg12">
<ul>
{% block nav %}
2018-01-15 18:07:59 +01:00
{% for page in root_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 %}
2017-09-13 19:15:18 +02:00
</div>
<div class="margin fg4">
{% block seitenleiste %}
<h3>Kontakt</h3>
<p>
mail [at] reudnetz [dot] org<br />
2018-01-15 18:07:59 +01:00
GPG-Key: <a href="{{ get_url(path="/") }}/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>