You are here

opigno--tools.tpl.php in Opigno 7

Render a list of tools. Each tool is a themed tool item.

File

templates/opigno--tools.tpl.php
View source
<?php

/**
 * @file
 * Render a list of tools. Each tool is a themed tool item.
 */
?>
<div class="opigno-tools">
  <?php

foreach ($tools as $tool) {
  ?>
    <?php

  print render($tool);
  ?>
  <?php

}
?>
</div>