Files
beall-11ty/_includes/directory.njk

17 lines
443 B
Plaintext
Raw Permalink 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 }}">
2026-04-01 13:46:32 -07:00
{% else %}
<div class="missing-img"></div>
2026-03-31 16:38:22 -07:00
{% endif %}
</a>
</li>
{% endfor %}
</ol>