mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-30 10:29:42 +00:00
16 lines
364 B
Twig
16 lines
364 B
Twig
{% extends "@ChillMain/layout.html.twig" %}
|
|
|
|
{% block content %}
|
|
<div id="container content">
|
|
<div class="grid-8 centered">
|
|
<h1>{{ 'Global timeline'|trans }}</h1>
|
|
|
|
{{ timeline|raw }}
|
|
|
|
{% if nb_items > paginator.getItemsPerPage %}
|
|
{{ chill_pagination(paginator) }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|