theme_node_list

Definition

theme_node_list($items, $title = NULL)
node/node.module, line 76

Description

Format a listing of links to nodes.

Code

<?php
function theme_node_list($items, $title = NULL) {
  return theme('item_list', $items, $title);
}
?>