You are here

bootstrap-threecol-stacked.tpl.php in Panels Bootstrap Layouts 7.3

File

plugins/layouts/bootstrap_threecol_stacked/bootstrap-threecol-stacked.tpl.php
View source
<div class="<?php

print $classes;
?>" <?php

if (!empty($css_id)) {
  print "id=\"{$css_id}\"";
}
?>>
  <?php

if ($content['top']) {
  ?>
    <div class="row">
      <?php

  print $content['top'];
  ?>
    </div>
  <?php

}
?>

  <?php

if ($content['left'] || $content['middle'] || $content['right']) {
  ?>
    <div class="row">
      <?php

  print $content['left'];
  ?>
      <?php

  print $content['middle'];
  ?>
      <?php

  print $content['right'];
  ?>
    </div>
  <?php

}
?>

  <?php

if ($content['bottom']) {
  ?>
    <div class="row">
      <?php

  print $content['bottom'];
  ?>
    </div>
  <?php

}
?>
</div>