{% load i18n %}
+<p>
+ <strong>{% trans "Downloads" %}</strong>
+</p>
+<ul class="unstyled-list fss">
{% for file in files %}
- <h3>{{ file.title }}</h3>
- <p>{{ file.description }}</p>
- <a href="{{ file.file.url }}" class="button button--small">{% trans "download" %}</a>
+ <li>
+ <a href="{{ file.file.url }}" class=""><i class="fa fa-download"></i> {{ file.title }}</a>
+ {% if file.description %}
+ <br />
+ <p>
+ {{ file.description }}
+ </p>
+ {% endif %}
+ </li>
{% endfor %}
+</ul>
{% endif %}
{% endwith %}
{% endblock %}
+ {% block page_file %}
+ {% with object.files.all as files %}
+ {% if files %}
+ {% include 'core/inc/files.html' %}
+ {% endif %}
+ {% endwith %}
+ {% endblock %}
{% block page_audio %}
{% with object.audios.all as audios %}
{% if audios %}
{% endblock %}
{% block page_person_list %}
{% endblock %}
- {% block page_file %}
- {% with object.files.all as files %}
- {% if files %}
- {% include 'core/inc/files.html' %}
- {% endif %}
- {% endwith %}
- {% endblock %}
{% block products %}
{% endblock %}
{% block page_sub_content %}