Files
web.ems/phpMyAdmin/templates/console/toolbar.twig
2024-10-22 10:34:29 +08:00

11 lines
331 B
Twig
Executable File

<div class="toolbar {{ parent_div_classes }}">
{% for content in content_array %}
{% if content is defined %}
<div class="{{ content[0] }}">
{{ content['image'] is defined ? content['image']|raw }}
<span>{{ content[1] }}</span>
</div>
{% endif %}
{% endfor %}
</div>