{% extends "layouts/master.html.twig" %}
{% block bodyClass %}tpl-journal-front-page{% endblock %}
{% block siteHeader %}
{% include 'organisms/site-header.html.twig' %}
{% endblock %}
{% block pageHeader %}
{% include 'molecules/page-header.html.twig' with {
breadcrumb: [
{ path: path('journal_frontpage'), title: 'Xornal' }
],
title: 'Está a pasar...'
} %}
{% endblock %}
{% block pageContent %}
<usc-infinite-scroll
endpoint="path-to-endpoint"
container-selector=".results-wrapper"
>
<div class="results-wrapper">
{% include 'molecules/external-news/summary.html.twig' %}
{% include 'molecules/external-news/summary.html.twig' with { hasImage: true } %}
{% include 'molecules/external-news/summary.html.twig' %}
{% include 'molecules/external-news/summary.html.twig' %}
{% include 'molecules/external-news/summary.html.twig' %}
</div>
</usc-infinite-scroll>
{% endblock %}
{% block siteFooter %}
{% include 'organisms/site-footer.html.twig' %}
{% endblock %}