{% 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 %} {% if page_obj.has_previous %} « first previous {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}. {% if page_obj.has_next %} next last » {% endif %} {% endcomment %} {% if is_paginated %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}. {% if page_obj.has_previous %} Previous {% else %} Previous {% endif %} {% for num in page_obj.page_range %} {% if num == page_obj.number %} 1 {% else %} 1 {% endif %} {% endfor %} {% if page_obj.has_next %} Next {% else %} Next {% endif %} {% endif %} {% endblock content %}
{{ object.content|markdownify|truncatechars_html:200 }}