Minor - Format code

pull/2650/head
Angel Fernando Quiroz Campos 6 years ago
parent d0b3741c6d
commit 28d156d6cc
  1. 120
      src/ThemeBundle/Resources/views/Layout/layout_two_col.html.twig

@ -7,75 +7,75 @@
{% block page_content %}
{% autoescape false %}
{% if plugin_main_top %}
<div id="plugin_main_top" class="col-md-12">
{{ plugin_main_top }}
</div>
{% endif %}
{# Left column #}
<div class="col-md-3">
{% if plugin_menu_top %}
<div id="plugin_menu_top">
{{ plugin_menu_top }}
</div>
{% endif %}
{% block chamilo_left_column %}
<section class="left_column">
{% if is_granted('IS_AUTHENTICATED_FULLY') %}
{# User avatar #}
{{ render(controller('ChamiloThemeBundle:Sidebar:userPanel', {'pathInfo': pathInfo })) }}
{% endif %}
{# Login, Courses, Skills menu #}
{{ render(controller('ChamiloThemeBundle:Sidebar:leftMenu', {'request' : app.request, pathInfo: pathInfo })) }}
</section>
{% endblock %}
{% if plugin_menu_bottom %}
<div id="plugin_menu_bottom">
{{ plugin_menu_bottom }}
{% if plugin_main_top %}
<div id="plugin_main_top" class="col-md-12">
{{ plugin_main_top }}
</div>
{% endif %}
</div>
{# Right column #}
<div class="col-md-9">
{% if plugin_content_top %}
<div id="plugin_content_top">
{{ plugin_content_top }}
</div>
{% endif %}
{# Left column #}
<div class="col-md-3">
{% if plugin_menu_top %}
<div id="plugin_menu_top">
{{ plugin_menu_top }}
</div>
{% endif %}
{% block chamilo_breadcrumb %}
{% include '@ChamiloTheme/Layout/breadcrumb.html.twig' %}
{% endblock %}
{% block chamilo_left_column %}
<section class="left_column">
{% if is_granted('IS_AUTHENTICATED_FULLY') %}
{# User avatar #}
{{ render(controller('ChamiloThemeBundle:Sidebar:userPanel', {'pathInfo': pathInfo })) }}
{% endif %}
{# Login, Courses, Skills menu #}
{{ render(controller('ChamiloThemeBundle:Sidebar:leftMenu', {'request' : app.request, pathInfo: pathInfo })) }}
</section>
{% endblock %}
{% if plugin_menu_bottom %}
<div id="plugin_menu_bottom">
{{ plugin_menu_bottom }}
</div>
{% endif %}
</div>
{% block chamilo_messages %}
{# Flash messages #}
{% autoescape false %}
{% include '@ChamiloTheme/FlashMessage/render.html.twig' %}
{% endautoescape %}
{% endblock %}
{# Right column #}
<div class="col-md-9">
{% if plugin_content_top %}
<div id="plugin_content_top">
{{ plugin_content_top }}
</div>
{% endif %}
{% block chamilo_right_column %}
{% block content %}
<section class="right_column">
{{ content }}
</section>
{% block chamilo_breadcrumb %}
{% include '@ChamiloTheme/Layout/breadcrumb.html.twig' %}
{% endblock %}
{% endblock %}
{% if plugin_content_bottom %}
<div id="plugin_content_bottom">
{{plugin_content_bottom}}
{% block chamilo_messages %}
{# Flash messages #}
{% autoescape false %}
{% include '@ChamiloTheme/FlashMessage/render.html.twig' %}
{% endautoescape %}
{% endblock %}
{% block chamilo_right_column %}
{% block content %}
<section class="right_column">
{{ content }}
</section>
{% endblock %}
{% endblock %}
{% if plugin_content_bottom %}
<div id="plugin_content_bottom">
{{ plugin_content_bottom }}
</div>
{% endif %}
</div>
{% endif %}
</div>
{% if plugin_main_bottom %}
<div id="plugin_main_bottom" class="col-md-12">
{{ plugin_main_bottom }}
</div>
{% endif %}
{% if plugin_main_bottom %}
<div id="plugin_main_bottom" class="col-md-12">
{{ plugin_main_bottom }}
</div>
{% endif %}
{% endautoescape %}
{% endblock %}

Loading…
Cancel
Save