{% extends "base.html" %} {% load paniktags staticfiles i18n thumbnail %} {% block bodyID %}Home{% endblock %} {% block title %}{% trans 'Home' %}{% endblock %} {% block head %} {{ block.super }} {% endblock %} {% block main %}
{% if newsitems %}

{{newsitems.0.title}}

{{newsitems.0.text|safe}}
{% endif %}
{% spaceless %} {% for emission in emissions %}
{% thumbnail emission.image "450x450" crop="50% 50%" as im %} {% empty %} {% endthumbnail %}
{{emission.title}}
{% if emission.subtitle %}{{ emission.subtitle }} {% elif emission.has_focus %}#podcast{% endif %} {% for schedule in emission.schedule_set.all %} {% if forloop.first and forloop.last %}#{{schedule.datetime|date:"l"}}{% endif %} {% endfor %}
{% endfor %} {% for page in extra_pages %}
{% thumbnail page.picture "450x450" crop="50% 50%" as im %} {% empty %} {% endthumbnail %}
{{page.title}}
{% if page.slug == "interviews" %}#podcast{% endif %}
{% endfor %} {% endspaceless %}
{% endblock %}