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.
31 lines
611 B
31 lines
611 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>
|
|
<h4 class="w3-center">{{messg.titel}}</h4>
|
|
<p class="w3-center"> {{message.text}}</p>
|
|
<div class="w3-panel {{message.color}}">
|
|
<h3>{{message.titel}}!</h3>
|
|
<p>{{message.text}}</p>
|
|
</div>
|
|
|
|
{% if form %}
|
|
{% include "kontaktformular.html" %}
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|
|
|