website/templates/index.html

77 lines
2.4 KiB
HTML
Executable File

{% 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">
<link rel="icon" type="image/x-icon" href="{{ get_url(path="style") }}/favicon.ico" >
<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" />
<script src="https://reudnetz.org/jquery-3.4.1.min.js"></script>
<script src="https://help.reudnetz.org/assets/chat/chat.min.js"></script>
<script>
$(function() {
new ZammadChat({
fontSize: '12px',
chatId: 1,
show: false,
target: $('.chatwindow')
});
});
</script>
</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">
<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 %}
{% 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="chatwindow"> </div>
<div class="row content">
<div class="fg8">
{% block content %}
{{ section.content | safe }}
{% endblock content %}
</div>
<div class="margin fg4">
{% block seitenleiste %}
<h3>Kontakt</h3>
<p>
mail [at] reudnetz [dot] org<br />
</p>
<button class="open-zammad-chat">Chatte mit sexy Nerd aus deiner Umgebung (7km)</button>
{% endblock seitenleiste %}
</div>
</div>
<div class="row fg-no-desktop">
<div class="fg12 legal">
<a href="{{ get_url(path="impressum") }}">Impressum</a> | <a href="{{ get_url(path="/datenschutz") }}">Datenschutzhinweis</a>
</div>
</div>
</div>
</body>
</html>