added base app.route, and a templates folder with a base.html

This commit is contained in:
2021-01-10 11:58:04 +11:00
parent 686cc5daca
commit 50929e10c9

9
templates/base.html Normal file
View File

@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Photo Assistant</title>
</head>
<body>
<div>HI!</div>
</body>
</html>