{% extends "all_content/base.html" %} {% load cache typogrify_tags tango_time_tags %} {% block extra_title %} {{ destination }} {% if is_paginated and page_obj.number != 1 %} page {{ page_obj.number }} {% endif %} {% endblock %} {% block bodyclass %}section-front {% if page_obj.number == 1 %} first-page {% endif %} {% endblock %} {% block content %} {# To do: cache by destination, page (and maybe count within destination) #} {% include 'includes/generic_pagination.html' %} {% with object_list|slice:"0:4" as top_articles %}
{% for a in top_articles %} {% if forloop.first %}
{% if a.get_kicker and a.show_label.slug != slug %}

{{ a.get_kicker|safe }}

{% endif %}

{{ a.title|typogrify }}

{% with a.get_image as main_image %} {% if main_image %} {% if main_image.is_vertical %}
{% else %}
{% endif %}
{{ main_image.caption }}
{% endif %}
{% format_time a.created %} {% if main_image %} {{ a.summary }} {% else %} {{ a.body_formatted|safe|truncatewords:"120" }} {% endif %}
{% endwith %}
{% endwith %}
{% include 'includes/generic_pagination.html' %} {% endblock %} {% block destination_extras %} {% if authenticated_request and destination.author == user %}

Add an entry

{% endif %} {% endblock %}