right.html.twig 706 B

123456789101112131415161718
  1. <div id="right-panel">
  2. <input type="checkbox" id="toggle-right" class="larger">
  3. <div class="arrow right">
  4. <label for="toggle-right" id='right-panel'></label>
  5. </div>
  6. <div id='right-container'>
  7. {% set current_path = app.request.get('_route') %}
  8. {% if right_panel_vars is defined %}
  9. {% for block in handle_event('AppendRightPanelBlock', {'path': current_path, 'vars': right_panel_vars}) %}
  10. {{ block | raw }}
  11. {% endfor %}
  12. {% else %}
  13. {% for block in handle_event('AppendRightPanelBlock', {'path': current_path}) %}
  14. {{ block | raw }}
  15. {% endfor %}
  16. {% endif %}
  17. </div>
  18. </div>