{% extends "blogorama/base.html" %} {% load static %} {% load i18n %} {% load markdownify %} {% block title %} Blogorama - Blog Posts {% endblock title %} {% block content %}

Blogorama Blog Posts.

{% for object in object_list %}
...

{{ object.title }}

{{ object.content|markdownify|truncatechars_html:200 }}

Continue Reading
{% empty %} No Posts yet. {% endfor %}
Post List
{% comment %} {% endcomment %} {% if is_paginated %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}. {% endif %}
{% endblock content %}