{% 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 %}
{{ path("claro_index") }}

{{ themeTitle }}{% if theme is defined %} ({{ theme.name }}){% endif %}

{{ 'theme_name' | trans({}, "theme") }}:
{# end of panel #}

{{ 'theme_parameters' | trans({}, "theme") }}

{{ "bootstrap_designed" | trans({}, "theme") }}, {{ "if_doubt_on_gui_message" | trans({}, "theme") }}, {{ "read_boostrap_doc" | trans({}, "theme") }}.
{% if parameters is defined %}
{% for name,array in parameters.getParameters() %}
{% for code,value in array %} {% endfor %}
{{ code }}
{% endfor %}
{% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}