summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.py3
-rw-r--r--templates/contact.html7
2 files changed, 10 insertions, 0 deletions
diff --git a/index.py b/index.py
index 2640667..38512e3 100644
--- a/index.py
+++ b/index.py
@@ -346,6 +346,9 @@ def imprint(req):
(c, s, cursor) = session_start(req, None)
return render_to_string("imprint.html", c)
+def contact(req):
+ (c, s, cursor) = session_start(req, None)
+ return render_to_string("contact.html", c)
def new_project(req, **formdata):
(c, s, cursor) = session_start(req, False)
diff --git a/templates/contact.html b/templates/contact.html
new file mode 100644
index 0000000..e81d9d9
--- /dev/null
+++ b/templates/contact.html
@@ -0,0 +1,7 @@
+{% extends "base.html" %}
+{% block title %}Imprint{% endblock %}
+{% block content %}
+<h1>Contact</h1>
+If you encounter any problems or wish to send us some other message, please write to:<br/><br/>
+<strong style="margin-left:20%;">dev@spline.de</strong><br/>
+{% endblock %}