change inheritance to simplify things; also remove the sexy nerd sentence.

This commit is contained in:
amanita 2023-10-27 18:03:25 +02:00
parent b474c68a5f
commit 4ceb340595
2 changed files with 8 additions and 1 deletions

View file

@ -22,6 +22,9 @@
});
});
</script>
{% block title %}
<title>{{ config.title }}</title>
{% endblock title %}
</head>
<body>
<div class="center">
@ -62,7 +65,7 @@
<p>
mail [at] reudnetz [dot] org<br />
</p>
<button class="open-zammad-chat">Chatte mit sexy Nerd aus deiner Umgebung (7km)</button>
<button class="open-zammad-chat">Klicke hier um mit uns zu chatten.</button>
{% endblock seitenleiste %}
</div>
</div>

View file

@ -1,5 +1,9 @@
{% extends "index.html" %}
{% block title %}
<title>{{ page.title }} - {{ config.title }}</title>
{% endblock title %}
{% block content %}
{{ page.content | safe }}
{% endblock content %}