<?php

/**
 * @file
 * Theme implementation to display a region.
 */
$attributes = cems_add_attributes_add_class($attributes, 'l-container header__nav');
if ($content) {
    ?>
  <div <?php 
    print $attributes;
    ?>
>
    <?php 
    print $content;
    ?>
  </div>
<?php 
}
<?php

/**
 * @file
 * Theme implementation to display a region.
 */
$attributes = cems_add_attributes_add_class($attributes, 'header__branding');
if ($content) {
    ?>
  <div <?php 
    print $attributes;
    ?>
>
    <?php 
    print $content;
    ?>
  </div>
<?php 
}
<?php

/**
 * @file
 * Theme implementation to display a region.
 */
$attributes = cems_add_attributes_add_class($attributes, 'l-container');
if ($content) {
    ?>
  <div <?php 
    print $attributes;
    ?>
>
    <?php 
    print $content;
    ?>
  </div>
<?php 
}