{% verbatim -%} {# /** * @file * Default theme implementation to display {% endverbatim %}{{ layout_name|lower }}{% verbatim %} layout. * * Available variables: * - content: The content for this layout. * - attributes: HTML attributes for the layout wrapper. * * @ingroup themeable */ #} {% if content %} {# @DCG Drupal naming convention for CSS classes in layouts seems weird. Feel free to change it. #} {% set classes = [ 'layout', 'layout--{% endverbatim %}{{ layout_machine_name|u2h }}'{% verbatim %}, ] %} {% if content.main %}
{{ content.main }}
{% endif %} {% if content.sidebar %}
{{ content.sidebar }}
{% endif %} {% endif %} {% endverbatim -%}