14 lines
312 B
HTML
Executable File
14 lines
312 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 %}
|