field--quick-links.tpl.php in Panopoly Theme 7
File
templates/field--quick-links.tpl.phpView 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,
));