2024-08-01 09:07:49 +00:00
|
|
|
from flask import render_template
|
2024-08-01 06:56:27 +00:00
|
|
|
from app import app
|
|
|
|
|
|
|
|
@app.route('/')
|
|
|
|
@app.route('/index')
|
|
|
|
def index():
|
2024-08-01 09:07:49 +00:00
|
|
|
|
|
|
|
user = {'username': 'Finnaa'}
|
|
|
|
posts = [
|
|
|
|
{
|
|
|
|
'author': {'username': 'john'},
|
|
|
|
'body': 'Beautiful day 1'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'author': {'username': 'susie'},
|
|
|
|
'body': 'Movie is good.'
|
|
|
|
}
|
|
|
|
]
|
|
|
|
#return posts;
|
|
|
|
return render_template('index.html', title='Home', user=user, posts=posts)
|
|
|
|
|
2024-08-01 06:56:27 +00:00
|
|
|
|