Files
beall-11ty/_includes/directory.njk

15 lines
386 B
Plaintext
Raw Normal View History

2026-03-31 16:38:22 -07:00
{% 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>