mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
32 lines
814 B
Twig
32 lines
814 B
Twig
{% extends "CLChillMainBundle::layout.html.twig" %}
|
|
|
|
{% block title%}{{ header_title|trans }}{% endblock %}
|
|
|
|
|
|
{% block css %}
|
|
{% stylesheets output="css/all.css" filter="cssrewrite"
|
|
"bundles/clchillmain/css/admin.css"
|
|
%}
|
|
<link rel="stylesheet" href="{{ asset_url }}"/>
|
|
{% endstylesheets %}
|
|
{% endblock css %}
|
|
|
|
{% block content %}
|
|
|
|
<h1>{{ page_title|trans }}</h1>
|
|
|
|
<ul class="two tiles admin_tiles">
|
|
{% for menu in menu_composer.getRoutesFor(menu) %}
|
|
<li class="">
|
|
<h3><a href="{{ path(menu.route, args) }}" >{{ menu.label|trans }}</a></h3>
|
|
|
|
<p>{{ menu.helper|trans|default('') }}</p>
|
|
|
|
<p><a href="{{ path(menu.route, args) }}" >{{ menu.label|trans }}</a></p>
|
|
</li>
|
|
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
|
|
{% endblock %} |