1
0
Fork 0
mirror of https://github.com/Lynnesbian/FediBooks/ synced 2024-11-25 08:38:59 +00:00

create landing page

This commit is contained in:
Lynne Megido 2019-08-27 20:36:54 +10:00
parent 8eff4ac122
commit 6195ce62e2
2 changed files with 17 additions and 0 deletions

10
templates/front_page.html Normal file
View file

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

View file

@ -0,0 +1,7 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def hello():
return render_template("front_page.html")