mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2024-11-25 08:38:59 +00:00
create landing page
This commit is contained in:
parent
8eff4ac122
commit
6195ce62e2
2 changed files with 17 additions and 0 deletions
10
templates/front_page.html
Normal file
10
templates/front_page.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>FediBooks</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
Henlo!!
|
||||||
|
</body>
|
||||||
|
</html>
|
7
webui.py
7
webui.py
|
@ -0,0 +1,7 @@
|
||||||
|
from flask import Flask, render_template
|
||||||
|
|
||||||
|
app = Flask(__name__)
|
||||||
|
|
||||||
|
@app.route("/")
|
||||||
|
def hello():
|
||||||
|
return render_template("front_page.html")
|
Loading…
Reference in a new issue