1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-21 17:34:25 +04:00
Files
tabler/shared/includes/ui/dropdown.html
2025-04-15 23:18:49 +02:00

10 lines
322 B
HTML

{% assign optionsArray = include.options | split: ", " %}
<div class="dropdown">
<a href="#" class="btn dropdown-toggle" data-bs-toggle="dropdown">{{ include.main-btn }}</a>
<div class="dropdown-menu">
{% for option in optionsArray %}
<a class="dropdown-item" href="#">{{ option }}</a>
{% endfor %}
</div>
</div>