{% load bootstrap_pagination %} {% load thumbnail %} {% if object_list|length %} {% for article in object_list %}

{{ article.title }}

{% with article.pub_date as d %}
{{ d|date:"F" }} {{ d|date:"jS" }}, {{ d|date:"Y" }} at {{ d|date:"P" }} · By {{ article.author.get_full_name|default:article.author }} {% if article.enable_comments or article.approved_comments %} · {% block blog_comments_link_content %} {% if article.approved_comments %}{{ article.approved_comments }}{% endif %}{% endblock blog_comments_link_content %} {% endif %}
{% endwith %} {% if article.photo %}
{% thumbnail article.photo "740x740" as article_photo %}
{% endif %}
{{ article.content|safe|truncatewords_html:50 }}

Read More »

{% if article.categories.count %} Categor{{ article.categories.count|pluralize:"y,ies" }}: {% for cat in article.categories.all %} {{ cat.name }} {% endfor %} {% endif %}
{% if not forloop.last %}
{% endif %} {% endfor %} {% if is_paginated %} {% bootstrap_paginate page_obj %} {% endif %} {% else %}

There are no articles at this time. Please check back later.

{% endif %}