You are here

views-fluid-grid-plugin-style.tpl.php in Views Fluid Grid 7.3

Same filename and directory in other branches
  1. 6 theme/views-fluid-grid-plugin-style.tpl.php

Default view template to display a list of items in a fluid grid.

Available template variables:

  • $view: The view object.
  • $title: Title of the view. May be empty.
  • $rows: Array of items.
  • $list_class: The class for the items list.
  • $classes: Array of classes for each item.
  • $classes_array: Array of classes for each item.

File

theme/views-fluid-grid-plugin-style.tpl.php
View source
<?php

/**
 * @file
 * Default view template to display a list of items in a fluid grid.
 *
 * Available template variables:
 * - $view: The view object.
 * - $title: Title of the view. May be empty.
 * - $rows: Array of items.
 * - $list_class: The class for the items list.
 * - $classes: Array of classes for each item.
 * - $classes_array: Array of classes for each item.
 *
 * @ingroup views_templates
 */
?>
<div class="views-fluid-grid">
  <?php

if (!empty($title)) {
  ?>
    <h3><?php

  print $title;
  ?></h3>
  <?php

}
?>
  <ul class="<?php

print $list_class;
?>">
    <?php

foreach ($rows as $id => $item) {
  ?>
      <li class="views-fluid-grid-inline views-fluid-grid-item <?php

  print $classes_array[$id];
  ?>"><?php

  print $item;
  ?></li>
    <?php

}
?>
    <?php

if (!empty($options['list_alignment']) && $options['list_alignment'] == 'justify') {
  ?>
      <li class="views-fluid-grid-inline views-fluid-grid-justify-last"></li>
    <?php

}
?>
  </ul>
</div>