--- /dev/null
+{% for audio in audios %}
+ {# audio.title #}<br>
+ {# audio.open_source_mime_type #}<br>
+ {# audio.closed_source_mime_type #}<br>
+ {# audio.category #}<br>
+ {# audio.media_id #}<br>
+ {# audio.open_source_url #}<br>
+ {# audio.closed_source_url #}<br>
+ {# audio.poster_url #}<br>
+
+ <audio controls>
+ <source src="{{ audio.open_source_url }}" type="{{ audio.open_source_mime_type }}">
+ <source src="{{ audio.closed_source_mime_type }}" type="{{ audio.closed_source_url }}">
+ Your browser does not support the audio element.
+ </audio>
+{% endfor %}
{% endblock %}
+{% block page_audio %}
+ {% with page.custompage.audios.all as audios %}
+ {% if audios %}
+ {% include 'core/inc/audio.html' %}
+ {% endif %}
+ {% endwith %}
+{% endblock %}
+
{% block page_slider %}
{% with page.custompage.images.all|get_type:'page_slider' as slider_images %}
{% if slider_images %}
{% endif %}
{% endwith %}
{% endblock %}
-{% block page_audio %}
-{% endblock %}
{% block page_sub_content %}
{% with page.custompage.blocks.all as blocks %}
{% endblock %}
+{% block page_audio %}
+ {% with page.departmentpage.audios.all as audios %}
+ {% if audios %}
+ {% include 'core/inc/audio.html' %}
+ {% endif %}
+ {% endwith %}
+{% endblock %}
+
+
{% block page_slider %}
{% with page.departmentpage.images.all|get_type:'page_slider' as slider_images %}
{% if slider_images %}
{% endif %}
{% endwith %}
{% endblock %}
-{% block page_audio %}
-{% endblock %}
{% block page_sub_content %}
{% with page.departmentpage.blocks.all as blocks %}
</div>
</div>
-
+ {% block page_audio %}
+ {% endblock %}
{% block page_slider %}
{% endblock %}
{% block page_video %}
{% endblock %}
-{% block page_slider %}
- {% with page.teampage.images.all|get_type:'page_slider' as slider_images %}
- {% if slider_images %}
- {% include 'core/inc/slider.html' %}
- {% endif %}
- {% endwith %}
-{% endblock %}
-
-{% block page_video %}
- {% with page.teampage.videos.all as videos %}
- {% if videos %}
- {% include 'core/inc/video.html' %}
- {% endif %}
- {% endwith %}
-{% endblock %}
-{% block page_audio %}
-{% endblock %}
-
{% block page_content %}
{% if page.teampage.sub_title %}
{% endblock %}
+{% block page_audio %}
+ {% with page.teampage.audios.all as audios %}
+ {% if audios %}
+ {% include 'core/inc/audio.html' %}
+ {% endif %}
+ {% endwith %}
+{% endblock %}
+
+{% block page_slider %}
+ {% with page.teampage.images.all|get_type:'page_slider' as slider_images %}
+ {% if slider_images %}
+ {% include 'core/inc/slider.html' %}
+ {% endif %}
+ {% endwith %}
+{% endblock %}
+
+{% block page_video %}
+ {% with page.teampage.videos.all as videos %}
+ {% if videos %}
+ {% include 'core/inc/video.html' %}
+ {% endif %}
+ {% endwith %}
+{% endblock %}
+
{% block page_sub_content %}
{% with page.teampage.blocks.all as blocks %}
{% include "core/inc/block.html" %}