PHRAS-2581_twig-macro-explode_4.1

explode commmon/macros.html.twig in 3 files for 3 macros
This commit is contained in:
Jean-Yves Gaulier
2019-05-16 17:26:24 +02:00
parent 6e55ff92d6
commit 77e262bad0
18 changed files with 67 additions and 108 deletions

View File

@@ -0,0 +1,19 @@
{% macro flashes() %}
{% for type in app.getAvailableFlashTypes %}
{% for message in app.getFlash(type) %}
<div class="alert alert-{{ type }}">
<table>
<tr>
<td class="alert-block-logo">
<i class="fa-2x icon-white fa fa-exclamation-circle" aria-hidden="true"></i>
</td>
<td class="alert-block-content">{{ message }}</td>
<td class="alert-block-close">
<a href="#"><b>&times;</b></a>
</td>
</tr>
</table>
</div>
{% endfor %}
{% endfor %}
{% endmacro %}