12 lines
396 B
Twig
12 lines
396 B
Twig
{% extends '/base.html.twig' %}
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
{% include '/sidepanel/left/left_stylesheets.html.twig' %}
|
|
{% include '/sidepanel/right/right_stylesheets.html.twig' %}
|
|
{% endblock %}
|
|
{% block leftpanel %}
|
|
{% include '/sidepanel/left/left.html.twig' %}
|
|
{% endblock %}
|
|
{% block rightpanel %}
|
|
{% include '/sidepanel/right/right.html.twig' %}
|
|
{% endblock %} |