File: /var/www/vcz/wp-content/themes/volonteka/templates/home.twig
{% extends "base.twig" %}
{% block content %}
<section class="news-page">
<div class="container">
<h1 class="h3">Novosti</h1>
<div class="row">
<div class="col-12 offset-xxl-2 col-xxl-8">
<div class="news-page__list">
{% for post in posts %}
{% include "templates/partials/article_card.twig" with {
'article_image': post.thumbnail,
'card_title': post.post_title,
'card_url': post.link }
%}
{% endfor %}
</div>
{% include "templates/partials/pagination.twig" %}
</div>
</div>
</div>
</section>
{% endblock %}