function theme_styleguide_links in Style Guide 7
Same name and namespace in other branches
- 6 styleguide.theme.inc \theme_styleguide_links()
Theme the page links.
NOTE: these may be turned into sub-tabs.
Parameters
$variables: The theme variables array, including: -- 'items' the list of links.
1 theme call to theme_styleguide_links()
- styleguide_page in ./styleguide.module 
- The styleguide page.
File
- ./styleguide.theme.inc, line 75 
- Theme file for Style Guide module.
Code
function theme_styleguide_links($variables) {
  // Close the header.
  $output = '<div id="styleguide-header" class="styleguide">';
  $output .= $variables['items'];
  $output .= '<div class="break"><br /></div>';
  $output .= '</div>';
  return $output;
}