Files
web.ems/phpMyAdmin/templates/console/toolbar.twig
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +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>