generated from inherentlee/11ty
ok big chunk o' everything
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user