{# articles \App\ArticleBundle\Entity\Article[] #} {# newsList \App\NewsBundle\Entity\News[] #} {# sections \App\SectionsBundle\Twig\SectionsExtension #}{# From global variable #} {% extends "default/index.html.twig" %} {% import 'macros.twig' as macros %} {% block body_class %} {{- parent()|replace({' front':''}) ~ ' section-index' -}} {% endblock %} {% block header_bottom %} {% include '::subpage_header_bottom.html.twig' %} {% endblock %} {% block sidebar %} {% include ':blocks:sidebar_sections.html.twig' %} {% include ':blocks:we_recommend.html.twig' %} {% endblock %} {% block index_content1 %}

{{- 'Aktualności' -}}

{{ macros.section_tag(sections.current) }} {% if newsList|length > 0 %} {% for key, news in newsList %}
{% set img = vich_uploader_asset(news.locale, 'imageFile') %} {% set link = path('news', {slug: news.locale.slug, section: news.section.locale.slug}) %} {% set title = 'Przeczytaj więcej o aktualności ' ~ news.locale.title %} {% if key == 0 %}
{{- macros.image(img, 'block_list_article', 'block_list_article', news.locale.title) -}}

{{- news.locale.title|truncate(70, true) -}}

{{- news.locale.summary|striptags|truncate(140, true)|raw -}}
{{ macros.readmore(link, title, 'pinned_bottom') }}
{% else %}

{{- news.locale.title -}}

{% endif %}
{% endfor %} {% else %}
{{- 'Lista aktualności jest pusta' -}}
{% endif %}

{{- 'Artykuły' -}}

{{ macros.section_tag(sections.current) }} {% if articles|length > 0 %} {% for key, article in articles %}
{% set img = vich_uploader_asset(article, 'imageFile') %} {% set link = path('article', {slug: article.locale.slug, section: sections.current.locale.slug}) %} {% set title = 'Przeczytaj więcej o artykule ' ~ article.locale.title %} {% if key == 0 %}
{{- macros.image(img, 'block_list_article', 'block_list_article', article.locale.title) -}}

{{- article.locale.title|truncate(70, true) -}}

{{- article.locale.shortDescription|striptags|truncate(140, true)|raw -}}
{{ macros.readmore(link, title, 'pinned_bottom') }}
{% else %}

{{- article.locale.title -}}

{% endif %}
{% endfor %} {% else %}
{{- 'Lista artykułów jest pusta' -}}
{% endif %}
{% endblock %} {% block index_content2 %} {{ parent() }}
{{ site_homepage_text()|raw }}
{% endblock %}