123456789101112131415161718192021222324 |
- from flask import render_template
- from app import app
- @app.route('/')
- @app.route('/index')
- def index():
- user = {'username': 'Dm'}
- posts = [
- {
- 'author': {'username': 'John'},
- 'body': 'Beauriful day in Portland!'
- },
- {
- 'author': {'username': 'Susan'},
- 'body': 'The Avengers movie was so cool!'
- },
- {
- 'author': {'username': 'Ипполит'},
- 'body': 'Какая гадость эта ваша заливная рыба!!!'
- }
- ]
- return render_template('index.html', title='Home', user=user, posts=posts)
-
|