mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-25 19:46:13 +00:00
14 lines
380 B
Twig
14 lines
380 B
Twig
{% extends "@ChillMain/layout.html.twig" %}
|
|
|
|
{% block title 'Calendar'|trans %}
|
|
|
|
{% block content -%}
|
|
<div class="calendar-show">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-10 col-xxl">
|
|
{% include 'ChillCalendarBundle:Calendar:show.html.twig' with {'context': 'user'} %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|