{% extends "stories/stories_base.html" %} {% load add_attribute %} {% block content %} {% if story_content.has_previous %}

{{ story.headline }}

continued from page {{ story_content.previous_page_number }}

{% else %}

{{ story.headline }}

{% if story.subheadline %}

{{ story.subheadline }}

{% endif %}

By {{ story.author_display }}

{% endif %} {% for paragraph in story_content.object_list %} {% if forloop.first %} {{ paragraph|add_attribute:"class=dropcap"|safe }} {% else %} {{ paragraph|safe }} {% endif %} {% endfor %} {% if story_content.has_next %}

Story Continues → {% endif %}


{% endblock %}