add base main.py file along with docstrings, templates

This commit is contained in:
Xevion
2020-06-19 13:52:08 -05:00
parent a5c9243cae
commit 9e39222a9a
4 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
"""
main.py
Simple launcher file for project.
"""

4
trivia/routes.py Normal file
View File

@@ -0,0 +1,4 @@
"""
Handles
"""

View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Error - {{ errorcode }}</title>
</head>
<body>
</body>
</html>

View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Index</title>
</head>
<body>
</body>
</html>