{% load thumbnail %} {% if article_list_title %}

{{ article_list_title }}

{% endif %} {% if articles.count %}
{% for article in articles %}

{{ 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 %}
{% if article.photo %}
{% thumbnail article.photo "740x740" as article_photo %}
{% endif %}
{{ article.content|safe|truncatewords_html:50 }}

Read More »

{% endwith %} {% if not forloop.last %}
{% endif %} {% endfor %}
{% else %}

No articles to display

{% endif %}