function theme_blockify_page_title in Blockify 6
Same name and namespace in other branches
- 8 blockify.theme.inc \theme_blockify_page_title()
 - 7 blockify.theme.inc \theme_blockify_page_title()
 
Returns the rendered page title.
1 theme call to theme_blockify_page_title()
- blockify_get_content in ./
blockify.module  - Provides individual block content.
 
File
- ./
blockify.theme.inc, line 76  
Code
function theme_blockify_page_title($page_title) {
  if ($page_title !== '') {
    return '<h1>' . $page_title . '</h1>';
  }
}