Files
travelrouter/app/routes.py
Rich 582fca2e90 .
2021-07-03 08:17:46 +01:00

14 lines
405 B
Python

from flask import render_template
from app import app
@app.route("/")
@app.route("/index")
def index():
user = {"username": "Miguel"}
posts = [
{"author": {"username": "John"}, "body": "Beautiful day in Portland!"},
{"author": {"username": "Susan"}, "body": "The Avengers movie was so cool!"},
]
return render_template("index.html", title="Home", user=user, posts=posts)