You are here

field--quick-links.tpl.php in Panopoly 7

File

modules/panopoly/panopoly_theme/templates/field--quick-links.tpl.php
View source
<?php

/**
 * Spit out the item list
 * 
 * TODO - is this the right way to create this output?
 */
$items = array();
foreach ($element as $key => $value) {
  if (is_numeric($key)) {
    $items[] = render($value);
  }
}
print theme('item_list', array(
  'items' => $items,
));