{% extends 'layout.html.twig' %} {% block content %} {{ include('Includes/content-default.html.twig') }}
{% for article in articles %} {# @var article \Pimcore\Model\DataObject\BlogArticle #}
{% set detailLink = path('blog', { id: article.getId(), text: article.getTitle(), prefix: document.getFullPath() }) %}

{{ article.getTitle() }}

{% include 'Blog/meta.html.twig' with { article: article } only %}
{% if article.getPosterImage() %} {{ article.getPosterImage().getThumbnail('content').getHTML()|raw }}

{% endif %} {{ article.getText()|raw }}
{% endfor %} {% include 'Includes/paging.html.twig' with { paginator: articles } only %}

{{ 'Categories'|trans }}

{{ 'Archive'|trans }}

{% endblock %}