change inheritance to simplify things; also remove the sexy nerd sentence.
This commit is contained in:
parent
b474c68a5f
commit
4ceb340595
2 changed files with 8 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
{% extends "index.html" %}
|
||||
|
||||
{% block title %}
|
||||
<title>{{ page.title }} - {{ config.title }}</title>
|
||||
{% endblock title %}
|
||||
|
||||
{% block content %}
|
||||
{{ page.content | safe }}
|
||||
{% endblock content %}
|
||||
|
|
Loading…
Reference in a new issue