generated from inherentlee/11ty
16 lines
438 B
Plaintext
16 lines
438 B
Plaintext
<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>
|