{% extends 'ccpages/base.html' %}
{% load ccnews_tags %}
{% load ccfiletypes_tags %}
{% block title %} {{article.title}} – {% endblock %}
{% block extra_css %}
{% ccnews_css %}
{% endblock %}
{% block extra_js %}
{% ccnews_js %}
{% endblock %}
{% block breadcrumbs %}
{% ccnews_nav_breadcrumb article %}
{% endblock %}
{% block nav_local %}
{% ccnews_nav_local article.created %}
{% endblock %}
{% block content %}
{{article.title}}
{{article.content_rendered|safe}}
{% for image in article.articleimage_set.all %}
{% if forloop.first %}
{% endif %}
{% if forloop.last %}
{% endif %}
{% endfor %}
{% for attachment in article.articleattachment_set.all %}
{% if forloop.first %}
{% endif %}
{% endfor %}
{% endblock %}