{% extends 'base.html' %} {% load djinsight_tags %} {% block title %}Articles - djinsight Example{% endblock %} {% block content %}

Articles

← Home
{% for article in articles %}
{{ article.title }}

{{ article.content|truncatewords:15 }}

By {{ article.author }} on {{ article.published_at|date:"M d, Y" }}

{% total_views_stat obj=article %} {% unique_views_stat obj=article %}
{% empty %}

No articles yet!

Visit the admin panel to create some articles.

{% endfor %}
{% if is_paginated %} {% endif %} {% endblock %}