presentations/taking-flight-with-tailwind-css/code/20-loops.txt

8 lines
153 B
Text

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