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

junyichong presents

might be
offensive blog

{% autoescape off %} {% for post in post_list %}
{{post.author}} {{post.created_on}}
{{ post.title }}
{{post.content | linebreaksbr | truncatewords:45 }}
Read More →

{% endfor %} {% endautoescape %}
{% if is_paginated %} {% if page_obj.has_previous %} First < {% endif %} {% for num in page_obj.paginator.page_range %} {% if page_obj.number == num %} {{ num }} {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %} {{ num }} {% endif %} {% endfor %} {% if page_obj.has_next %} > Last {% endif %} {% endif %}
{%endblock%}