{% extends "base.html" %} {% block title %}{% if category %}{{ category.name }} {% endif %}Articles{% endblock %} {% block content %}
{% for article in article_list %}

{{ article.headline }}

{{ article.pub_date|date:"Y F d" }}

{{ article.content|safe }}

{% endfor %}
{% if is_paginated %}

{% if has_next %} Older {% endif %} {% if has_next and has_previous %} | {% endif %} {% if has_previous %} Newer {% endif %}

{% endif %} {% endblock %}