{% extends 'ClarolineCoreBundle:Administration:layout.html.twig' %} {% block stylesheets %} {{ parent() }} {% endblock %} {% set themeTitle = "new_theme" | trans({}, "theme") %} {% if theme is defined %} {% set themeTitle = "edit_theme" | trans({}, "theme") %} {% endif %} {% block title %}{{ parent() ~ ' - ' ~ themeTitle | striptags | raw }}{% if theme is defined %} ({{ theme.name | striptags | raw }}){% endif %}{% endblock %} {% block breadcrumb %} {{ macros.breadcrumbs([ { 'icon': 'fa fa-cog', 'name': 'administration'|trans({}, 'platform'), 'href': path('claro_admin_index') }, { 'name': 'parameters'|trans({}, 'platform'), 'href': path('claro_admin_index') }, { 'name': 'appearance'|trans({}, 'platform'), 'href': path('claro_admin_parameters_appearance') }, { 'name': 'theme_generator'|trans({}, 'theme'), 'href': path('claroline_admin_theme_list') }, { 'name': themeTitle, 'href': '' } ]) }} {% endblock %} {% block section_content %}
{{ code }} |