{% set blogLang = getLang(blog.getBlogLangs(), app.request) %} {% if blogLang %} {% if type is not defined %} {% set type = 'standart' %} {% endif %} {% set link = path('blog_detail', {'alias': blogLang.alias}) %} {% if type == 'main' %} {% set src = asset('img/blog/'~blog.image) %} {% elseif type == 'central' %} {% if blog.verticalImage %} {% set src = asset('img/blog/'~blog.verticalImage) %} {% else %} {% set src = asset('img/blog/'~blog.image) %} {% endif %} {% else %} {% set src = asset('img/blog/'~blog.thumbnailImage) %} {% endif %}
{{ blogLang.title }}
{% if blog.tagIdentifierArray %}
{% for tag in blog.tagIdentifierArray %}
{{ blogTags[(tag)] }}
{% endfor %}
{% endif %}
{{ blogLang.title }}
{% if blog.createdAt is defined %} {% set date = blog.createdAt|date("d F Y")|split(' ') %} {% set date = date[0] ~ " " ~ date[1]|lower|trans ~ " " ~ date[2] %}
{{date}}
{% endif %}
{% endif %}