blob: 4da1d58910603d57ba9bd4b2949b83ad5c16abac (
plain)
1
2
3
4
5
6
7
8
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."))
|