view vendor/chi-teck/drupal-code-generator/templates/d8/_layout/template.twig @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
line wrap: on
line source
{{ '{' }}#
/**
 * @file
 * Default theme implementation to display {{ layout_name|lower }} layout.
 *
 * Available variables:
 * - content: The content for this layout.
 * - attributes: HTML attributes for the layout wrapper.
 *
 * @ingroup themeable
 */
#{{ '}' }}
{{ '{' }}%
  set classes = [
    'layout',
    'layout--{{ layout_machine_name|u2h }}',
  ]
%{{ '}' }}
{% verbatim %}
{% if content %}
  <div{{ attributes.addClass(classes) }}>

    {% if content.main %}
      <div {{ region_attributes.main.addClass('layout__region', 'layout__region--main') }}>
        {{ content.main }}
      </div>
    {% endif %}

    {% if content.sidebar %}
      <div {{ region_attributes.sidebar.addClass('layout__region', 'layout__region--sidebar') }}>
        {{ content.sidebar }}
      </div>
    {% endif %}

  </div>
{% endif %}
{% endverbatim %}