1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-28 09:40:14 -07:00
2017-05-05 21:04:25 +02:00

19 lines
437 B
Twig

<div class="ui modal">
<i class="close icon"></i>
{% if block('title') is not empty %}
<div class="header">
{% block title %}{% endblock %}
</div>
{% endif %}
<div class="content">
{% block content %}{% endblock %}
</div>
{% if block('actions') is not empty %}
<div class="actions">
{% block actions %}{% endblock %}
</div>
{% endif %}
</div>