it/itf/templates/modules/festival/documentsubject.html

13 lines
301 B
HTML
Executable File

{% load markup %}
{% for d in documents %}
<div class="orangeInnerRight">
{% if d.file %}
<a href="{{ d.file }}" target="_blank"> {{ d.title }}</a>
{% else %}
{{ d.title }}
{% endif %}
</div>
{{ d.intro|markdown }}
{% endfor %}