mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-19 16:54:25 +00:00
hand replace * push- by offset- * no-gutter by g-0 add breakpoints md- and sm-
16 lines
363 B
Twig
16 lines
363 B
Twig
{% extends "@ChillMain/layout.html.twig" %}
|
|
|
|
{% block content %}
|
|
<div id="container content">
|
|
<div class="col-8 centered">
|
|
<h1>{{ 'Global timeline'|trans }}</h1>
|
|
|
|
{{ timeline|raw }}
|
|
|
|
{% if nb_items > paginator.getItemsPerPage %}
|
|
{{ chill_pagination(paginator) }}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|