{% extends "base.html" %}
{% block content %}
{# show summaries of the latest articles #}
{% if articles %}
{% for article in (articles_page.object_list if articles_page else articles) %}
{{ article.title }}
Written by {{ article.author }} {% if article.category %}in {{ article.category}} {% endif %}on {{ article.locale_date }}.{% if article.tags|count > 0 %} Tags: {% for tag in article.tags %}{{ tag }}, {% endfor %}{% endif %}
{{ article.content if FOUNDATION_FRONT_PAGE_FULL_ARTICLES else article.summary }}
{% if not FOUNDATION_FRONT_PAGE_FULL_ARTICLES %}
{# add a 'Continue reading' link if we're displaying summaries #}
{% endif %}