bootstrap-with-tailwind/source/index.html.twig

17 lines
195 B
Twig
Raw Normal View History

2025-03-01 22:15:39 +00:00
---
layout: base
use:
- examples
---
<ul>
{% for example in data.examples %}
<li>
<a href="{{ example.url }}">
{{ example.title }}
</a>
</li>
{% endfor %}
</ul>