You are here

function theme_blockify_site_slogan in Blockify 8

Same name and namespace in other branches
  1. 6 blockify.theme.inc \theme_blockify_site_slogan()
  2. 7 blockify.theme.inc \theme_blockify_site_slogan()

Returns the rendered site slogan.

1 theme call to theme_blockify_site_slogan()
blockify_get_content in ./blockify.module
Provides individual block content.

File

./blockify.theme.inc, line 75
Theme functions for the Blockify module.

Code

function theme_blockify_site_slogan($variables) {
  return '<span class="site-slogan">' . $variables['site_slogan'] . '</span>';
}