aboutsummaryrefslogtreecommitdiff
path: root/web/website/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'web/website/test.py')
-rw-r--r--web/website/test.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/web/website/test.py b/web/website/test.py
new file mode 100644
index 0000000..4da1d58
--- /dev/null
+++ b/web/website/test.py
@@ -0,0 +1,9 @@
+#!/usr/bin/python3
+# -*- coding: utf-8 -*-
+
+import mod_python
+import fonctions
+
+def index(req):
+ req.content_type="text/html"
+ req.write(fonctions.baseHTML("Test","This is a test page."))