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")