{% extends "base.html" %} {% block title %}Blog ยท Serving Demo{% endblock %} {% block content %} {% if posts %} {% for post in posts %}

{{ post.title }}

{{ post.content_html|safe }}
{% endfor %} {% else %}

No posts yet. Write one.

{% endif %} {% endblock %}