{{ article.title }}
{{ article.summary }}
{# Uncomment if you want to show comment counts #}
{#{% include 'includes/comment_count.html' %}#}
more ...
{% extends "base.html" %}
{% block content %}
{% if articles %}
{% for article in (articles_page.object_list if articles_page else articles) %}
{{ article.title }}
{{ article.summary }}
{# Uncomment if you want to show comment counts #}
{#{% include 'includes/comment_count.html' %}#}
more ...