bootstrap-with-tailwind/source/index.html.twig
Oliver Davies a62acb33c3 Initial commit
Migrated from Astro.
2025-03-27 23:04:47 +00:00

16 lines
195 B
Twig

---
layout: base
use:
- examples
---
<ul>
{% for example in data.examples %}
<li>
<a href="{{ example.url }}">
{{ example.title }}
</a>
</li>
{% endfor %}
</ul>