{% extends 'base.html' %} {% block content %}
{% if not posts %}

작성된 포스트가 없습니다.

{% else %} {% for post in posts %}
{{ post.title }}

{{ post.title }}

Read more
{% endfor %} {% endif %}
{% endblock %}