blob: 1b18cc79d64d3a3c270fc09a3271c4b87c7db587 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/python3
# -*- coding: utf-8 -*-
def baseHTML(title,body):
content=("""<!DOCTYPE html>
<html>
<head>
<title>"""+ title +"""</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="styde.css">
</head>
<body>"""+ body +"""</body>
</html>
""")
return content
|