Files
microblog/app/templates/index.html
2023-06-04 11:24:53 +02:00

849 B

{% extends "base.html" %} {% import 'bootstrap/wtf.html' as wtf %} {% block app_content %}

Hi, {{ current_user.username }}!

{% if form %} {{ wtf.quick_form(form) }}
{% endif %} {% for post in posts %} {% include '_post.html' %} {% endfor %} {% endblock %}