talks/Taking Flight with Tailwind CSS/code/20-loops.txt
2021-02-06 22:46:22 +00:00

10 lines
173 B
Plaintext

{# base.html.twig #}
{% for item in navItems %}
<a
class="block py-3 px-4 text-sm text-gray-800"
href="{{ item.url }}"
>
{{ item.title }}
</a>
{% endfor %}