blob: 6ff289c80ca97d16e5bc43fad59eec8e3460c27d (
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("Test","""
This is a test page.</p>
"""))
|