You are here

ds-3col-stacked-html5.tpl.php in Display Suite 7

Display Suite 3 column stacked template HTML 5 version.

File

layouts/ds_3col_stacked_html5/ds-3col-stacked-html5.tpl.php
View source
<?php

/**
 * @file
 * Display Suite 3 column stacked template HTML 5 version.
 */
?>
<div class="ds-3col-stacked-html5 <?php

print $classes;
?> clearfix">

  <?php

if (isset($title_suffix['contextual_links'])) {
  ?>
  <?php

  print render($title_suffix['contextual_links']);
  ?>
  <?php

}
?>

  <?php

if ($header) {
  ?>
    <header class="group-header<?php

  print $header_classes;
  ?>">
      <?php

  print $header;
  ?>
    </header>
  <?php

}
?>

  <?php

if ($left) {
  ?>
    <aside class="group-left<?php

  print $left_classes;
  ?>">
      <?php

  print $left;
  ?>
    </aside>
  <?php

}
?>

  <?php

if ($middle) {
  ?>
    <section class="group-middle<?php

  print $middle_classes;
  ?>">
      <?php

  print $middle;
  ?>
    </section>
  <?php

}
?>

  <?php

if ($right) {
  ?>
    <aside class="group-right<?php

  print $right_classes;
  ?>">
      <?php

  print $right;
  ?>
    </aside>
  <?php

}
?>

  <?php

if ($footer) {
  ?>
    <footer class="group-footer<?php

  print $footer_classes;
  ?>">
      <?php

  print $footer;
  ?>
    </footer>
  <?php

}
?>
</div>