15 lines
386 B
Plaintext
15 lines
386 B
Plaintext
{% css %}{% include "css/directory.css" %}{% endcss %}
|
|
|
|
<ol id="directory">
|
|
{% for item in items %}
|
|
<li>
|
|
<a href="{{ item.url }}">
|
|
<h2>{{ item.data.shortTitle or item.data.title }}</h2>
|
|
{% if item.data.img.src and item.data.img.alt %}
|
|
<img src="/img/{{ item.data.img.src }}" alt="{{ item.data.img.alt }}">
|
|
{% endif %}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|