Back to Flask

{% block title %}Posts{% endblock %}

examples/tutorial/flaskr/templates/blog/index.html

3.1.3306 B
Original Source

{% extends 'base.html' %} {% block header %}

{% block title %}Posts{% endblock %}

{% if g.user %} New {% endif %} {% endblock %} {% block content %} {% for post in posts %}

{{ post['body'] }}

{% if not loop.last %}


{% endif %} {% endfor %} {% endblock %}