old-homepage/index.py

15 lines
272 B
Python
Raw Normal View History

2016-04-12 17:52:18 +00:00
#!/usr/bin/env python3
2016-04-12 17:41:50 +00:00
from htmlgen import *
2016-04-12 17:51:03 +00:00
print("Content-type: text/html\r\n\r\n")
2016-04-12 17:41:50 +00:00
html=htmlgen.HTMLgen(pagelayout.getLayoutXML().decode('utf-8'),"Home Page")
2016-04-12 17:53:50 +00:00
html.addArticle("Markdown test","""*Hello, World!*
test
test
**HI**
**TEST**""")
2016-04-12 17:41:50 +00:00
print(html.renderSite())