- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
11 lines
331 B
Twig
11 lines
331 B
Twig
<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>
|