mirror of
https://github.com/tabler/tabler.git
synced 2025-12-21 17:34:25 +04:00
13 lines
502 B
HTML
13 lines
502 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_cached 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>
|