{% extends "zenblogds/index.html" %} {% load static %} {% load zenblogds_tags %} {% load markdownify %} {% block content %} Category: {{ selected_category }} {% for item in page_obj %} {{ item | category_display }} • {{ item.updated_on | date:"M jS 'y"}} {{ item.title }} {{ item.content | markdownify | striptags | truncatechars:100 }} {{ item.author.last_name}} {{ item.author.first_name }} {% endfor %} {% if is_paginated %} {% if page_obj.has_previous %} Previous {% endif %} {% for page_num in page_bundle %} {{ page_num }} {% endfor %} {% if page_obj.has_next %} Next {% endif %} {% endif %} {% sidebar %} {% endblock content %}
{{ item.content | markdownify | striptags | truncatechars:100 }}