Ниже приведен код:
Код: Выделить всё
from flask import Flask, render_template, url_for
app = Flask(__name__)
posts = [
{
'author': 'Devo Developerr',
'title': 'Blog Post 1',
'content': 'First post content',
'date_posted': 'October 23, 2020'
},
{
'author': 'Jane Doe',
'title': 'Blog Post 2',
'content': 'Second post content',
'date_posted': 'April 21, 2020'
}
]
@app.route("/")
@app.route("/home")
def home():
return render_template('home.html', posts=posts)
@app.route("/about")
def about():
return render_template('about.html', title='About')
if __name__ == '__main__':
app.run(debug=True)
Это мой HTML-файл home.html
Код: Выделить всё
{% for post in posts %}
{{ post.title }}
By {{ post.author }} on {{ post.fate_posted }}
{{ post.content }}
{% end for %}

Каков результат прямо сейчас:

Подробнее здесь: https://stackoverflow.com/questions/645 ... ot-showing
Мобильная версия