it/itf/templates/modules/festival/documentsubject.html
2012-01-01 16:06:36 +05:30

14 lines
313 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 }}
<br />
{% endfor %}