{% extends "base.html" %} {% load static %} {% block content %}

{{ blog.title }}

{{ blog.description }}

{% if user.is_authenticated %} Create Arcticle {% endif %}
{% for post in posts %}

{{ post.title }}

- {{ post.author.username | title}}
{{ post.description|safe }}

{% endfor %} {% endblock content %} {% block template_script %} {% endblock template_script %}