{% extends "base.html" %} {% block title %}{{blog_title.title}}{% endblock %} {% block content %}
{% for post in posts %}

{{ post.title }}

Posted on {{ post.date }}

{% if post.displayall %}
{{ post.content | safe }}

{% else %}
{{ post.content | striptags | truncate(200) }}
Read More
{% endif %} {% endfor %}
{% endblock %}