ok big chunk o' everything

This commit is contained in:
2026-09-17 19:41:44 -07:00
parent bf95c6b05e
commit 03398543ee
72 changed files with 870 additions and 54 deletions
+15
View File
@@ -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>