ocarina/libsaria/server/pages/root.py

12 lines
163 B
Python
Raw Normal View History

# Bryan Schumaker (5 / 15 / 2011)
def index():
text = "<html> \
<body>Hello, world!</body> \
</html>"
return text
docs = {
"index.html":(index, "html")
}