gute idee gehabt

This commit is contained in:
Yannik 2019-06-17 18:26:52 +02:00
parent 76db79b5f3
commit 9b376e2d95
2 changed files with 32 additions and 17 deletions

2
static/jquery-3.4.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -7,17 +7,29 @@
<meta name="keywords" content="" /> <meta name="keywords" content="" />
<meta name="robots" content="index,follow" /> <meta name="robots" content="index,follow" />
<meta name="viewport" content="width=device-width, initial-scale=1"> <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") }}fitgrid.css" />
<link rel="stylesheet" type="text/css" href="{{ get_url(path="style") }}styles.css" /> <link rel="stylesheet" type="text/css" href="{{ get_url(path="style") }}styles.css" />
<script src="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
});
});
</script>
</head> </head>
<body> <body>
<div class="center"> <div class="center">
<div class="row head"/> <div class="row head"/>
<div class="fg12 legal fg-no-mobile"> <div class="fg12 legal fg-no-mobile">
<a href="{{ get_url(path="impressum") }}">Impressum</a> | <a href="{{ get_url(path="/datenschutz") }}">Datenschutzhinweis</a> <a href="{{ get_url(path="impressum") }}">Impressum</a> | <a href="{{ get_url(path="/datenschutz") }}">Datenschutzhinweis</a>
</div> </div>
<div class="fg6"> <div class="fg6">
<a href="{{ get_url(path="/") }}"><h1>Reudnetz</h1></a> <a href="{{ get_url(path="/") }}"><h1>Reudnetz</h1></a>
</div> </div>
<div class="fg6"> <div class="fg6">
<h2>Internet für Leipzigs Osten</h2> <h2>Internet für Leipzigs Osten</h2>
@ -25,22 +37,22 @@
</div> </div>
<div class="row nav"> <div class="row nav">
<div class="fg12"> <div class="fg12">
<ul> <ul>
{% block nav %} {% block nav %}
{% for page in root_section.pages %} {% for page in root_section.pages %}
<li> <li>
<a href="{{ get_url(path=page.path) }}" title="{{ page.title }}">{{ page.title }}</a> <a href="{{ get_url(path=page.path) }}" title="{{ page.title }}">{{ page.title }}</a>
</li> </li>
{% endfor %} {% endfor %}
{% endblock nav %} {% endblock nav %}
</ul> </ul>
</div> </div>
</div> </div>
<div class="row content"> <div class="row content">
<div class="fg8"> <div class="fg8">
{% block content %} {% block content %}
{{ section.content | safe }} {{ section.content | safe }}
{% endblock content %} {% endblock content %}
</div> </div>
<div class="margin fg4"> <div class="margin fg4">
@ -49,12 +61,13 @@
<p> <p>
mail [at] reudnetz [dot] org<br /> mail [at] reudnetz [dot] org<br />
</p> </p>
<button class="open-zammad-chat">Chat with us</button>
{% endblock seitenleiste %} {% endblock seitenleiste %}
</div> </div>
</div> </div>
<div class="row fg-no-desktop"> <div class="row fg-no-desktop">
<div class="fg12 legal"> <div class="fg12 legal">
<a href="impressum.html">Impressum</a> | <a href="datenschutz.html">Datenschutzhinweis</a> <a href="{{ get_url(path="impressum") }}">Impressum</a> | <a href="{{ get_url(path="/datenschutz") }}">Datenschutzhinweis</a>
</div> </div>
</div> </div>
</div> </div>