You are here

function theme_styleguide_content in Style Guide 7

Same name and namespace in other branches
  1. 6 styleguide.theme.inc \theme_styleguide_content()

Theme the content.

This function is here in case anyone wants to change it.

Parameters

$variables: The theme variables array, including: -- 'content' an HTML content element.

1 theme call to theme_styleguide_content()
styleguide_page in ./styleguide.module
The styleguide page.

File

./styleguide.theme.inc, line 93
Theme file for Style Guide module.

Code

function theme_styleguide_content($variables) {
  return $variables['content'];
}