mirror of
https://github.com/tabler/tabler.git
synced 2026-07-26 04:54:40 +04:00
13 lines
495 B
HTML
13 lines
495 B
HTML
{% assign menu = include.menu | default: 'Import,Export,Download,Another action' | split: ',' %}
|
|
{% assign icon = include.icon | default: 'more-horizontal' %}
|
|
<div class="dropdown float-right">
|
|
<a href="#" class="card-drop" data-toggle="dropdown" aria-expanded="false">
|
|
{% include ui/icon.html icon=icon %}
|
|
</a>
|
|
<div class="dropdown-menu dropdown-menu-right">
|
|
{% for item in menu %}
|
|
<a href="#" class="dropdown-item">{{ item }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|