aboutsummaryrefslogtreecommitdiff
path: root/web/website/index.py
blob: 87392db4986246fe2d7a196ab0a7fcb9e912a083 (plain)
1
2
3
4
5
6
7
8
9
10
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>
"""))