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> </script>
{% block title %}
<title>{{ config.title }}</title>
{% endblock title %}
</head> </head>
<body> <body>
<div class="center"> <div class="center">
@ -62,7 +65,7 @@
<p> <p>
mail [at] reudnetz [dot] org<br /> mail [at] reudnetz [dot] org<br />
</p> </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 %} {% endblock seitenleiste %}
</div> </div>
</div> </div>

View file

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