mirror of
https://github.com/Xevion/trivia.git
synced 2025-12-11 06:09:02 -06:00
add base main.py file along with docstrings, templates
This commit is contained in:
4
trivia/routes.py
Normal file
4
trivia/routes.py
Normal file
@@ -0,0 +1,4 @@
|
||||
"""
|
||||
Handles
|
||||
|
||||
"""
|
||||
10
trivia/templates/error.html
Normal file
10
trivia/templates/error.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Error - {{ errorcode }}</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
10
trivia/templates/index.html
Normal file
10
trivia/templates/index.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Index</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user