SU-SWS/stanford_profile_helper

View on GitHub
modules/jumpstart_ui/dist/templates/decanter/layout/flex/three-column/valmer/valmer.twig

Summary

Maintainability
Test Coverage
{#
/**
 * @file
 * Template for a complex column panel layout.
 *
 * This template provides a complex column panel display layout, with
 * each column roughly equal in width.
 *
 * Variables:
 * -
 * -
 *
 *
 *
 */
#}
<div{{ attributes }} class="layout {{ modifier_class }}">
  {% if header is not empty %}
    <header class="flex-container centered-container">
      <div class="flex-12-of-12">
        {{ header }}
      </div>
    </header>
  {% endif %}

  <section class="flex-container centered-container">
    <div class="flex-md-6-of-12">
      {{ first }}
    </div>

    <div class="flex-md-3-of-12">
      {{ second }}
    </div>

    <div class="flex-md-3-of-12">
      {{ third }}
    </div>
  </section>

  {% if footer is not empty %}
    <footer class="flex-container centered-container">
      <div class="flex-12-of-12">
        {{ footer }}
      </div>
    </footer>
  {% endif %}
</div>