- URL 하드코딩 → .env APP_URL 기반 동적 URL로 변경 - DB 연결 하드코딩 → .env 기반으로 변경 - MySQL strict mode DATE 오류 수정
13 lines
378 B
Twig
13 lines
378 B
Twig
<div class="{{ parent_div_classes }}">
|
|
{% for content in content_array %}
|
|
{% if content is defined %}
|
|
<span class="{{ content[0] }}">
|
|
{{ content[1] }}
|
|
{% if content['extraSpan'] is defined %}
|
|
: <span>{{ content['extraSpan'] }}</span>
|
|
{% endif %}
|
|
</span>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|