Sinnes-tau.de Homepage
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

30 lines
556 B

{% extends "st_base.html" %}
{% load static %}
{% load st_extratags %}
{% block javascript %}
{% endblock %}
{% block style %}
{% endblock %}
{% block content %}
<!-- Container (About Section) -->
<div class="w3-content w3-container w3-padding-64">
<h3 class="w3-center">{{message.titel}}</h3>
<div class="w3-panel {{message.color}}">
<h3>{{message.titel}}!</h3>
<p>{{message.text}}</p>
<p>{{message.error|safe }}</p>
</div>
{% if form %}
{% include "kontaktformular.html" %}
{% endif %}
</div>
{% endblock %}