Files
siblinghood/_includes/card.njk
T

16 lines
438 B
Plaintext
Raw Normal View History

2026-09-17 19:41:44 -07:00
<ol>
{% for stop in stops %}
<li class="stop">
<svg aria-hidden="true" viewBox="0 0 32 32" focusable="false">
<circle stroke="none" cx="16" cy="16" r="10"></circle>
</svg>
<h2>{{ stop.data.location }}</h2>
{% if stop.data.img %}
<img src="/img/{{ stop.data.img.src }}" alt="{{ stop.data.img.alt }}">
{% else %}
<div class="spacer"></div>
{% endif %}
</li>
{% endfor %}
</ol>