{{ post.title }}
{{ post.content_html|safe }}
{% extends "base.html" %}
{% block title %}Blog ยท Serving Demo{% endblock %}
{% block content %}
{% if posts %}
{% for post in posts %}
{{ post.title }}
{{ post.content_html|safe }}
No posts yet. Write one.
{% endif %} {% endblock %}