{% list_stories as stories_list limit=6 tags="rotator" quality="90" %} {% for story in stories_list %}

{% blocktrans with t=story.title %}{{ t }}{% endblocktrans %}

{% blocktrans with c=story.content|striptags|truncatewords_html:"32" %}{{ c }}{% endblocktrans %}

{% trans 'Read More' %}

{% if story.image %}
image for {{ story.title }}
{% endif %}
{% endfor %}

{% trans 'In The News' %}

{% list_news as news_list limit=3 %} {% for news_item in news_list %}

{% blocktrans with h=news_item.headline %}{{ h }}{% endblocktrans %}

{% blocktrans with c=news_item.summary|striptags|safe|truncatewords:"30" %}{{ c }}{% endblocktrans %}


{% endfor %}

{% trans 'View More News' %} »

{% trans 'Support Our Cause' %}

{% box 5 %}

{% trans 'Upcoming Events' %}

{% list_events as events_list limit=3 %} {% if events_list %} {% for event in events_list %} {% if event.image %} {{ event.title }} {% endif %}

{{ event.start_dt|date:"F d, Y" }}

{% blocktrans with t=event.title %}{{ t }}{% endblocktrans %}

{% for speaker in event.speakers %}

{{ speaker.name }}

{% endfor %}

{% blocktrans with d=event.description|striptags|truncatewords:"30"|safe %}{{ d }}{% endblocktrans %}

{% endfor %} {% else %}

{% trans 'Add an Event Today to See Something Here ' %}

{% now "F d, Y" %}

{% trans 'This is example of what your event description will look like. Start adding Events to start adding your own content today!' %}

{% if request.user.is_authenticated %}

{% blocktrans %}Display your next upcoming event right on your homepage. Once you add your first event, this area will be replaced by that information. Don't forget to add an event photo!{% endblocktrans %}

{% endif %}

{% trans 'Read More' %} »

{% endif %}

{% trans 'Our Photos' %}

{% list_photos as photos_list limit=6 random=True %} {% for photo in photos_list %}
{{ photo.title }}
{% endfor %}
{% box 4 %}