aboutsummaryrefslogtreecommitdiff
path: root/web/website/index.py
diff options
context:
space:
mode:
Diffstat (limited to 'web/website/index.py')
-rw-r--r--web/website/index.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/web/website/index.py b/web/website/index.py
new file mode 100644
index 0000000..87392db
--- /dev/null
+++ b/web/website/index.py
@@ -0,0 +1,11 @@
+#!/usr/bin/python3
+# -*- coding: utf-8 -*-
+
+import mod_python
+import fonctions
+
+def index(req):
+ req.content_type="text/html"
+ req.write(fonctions.baseHTML("ATS-Project","""
+<center><h1>ATS-Project</h1></center>
+"""))