function html5_tools_get_html_head in HTML5 Tools 6
Wrapper function for drupal_get_html_head().
Return value
The rendered HTML for the header variable.
File
- ./
html5_tools.module, line 54
Code
function html5_tools_get_html_head() {
$element = array(
'#type' => 'meta',
'#attributes' => array(
'charset' => 'utf-8',
),
);
$stored_head = html5_tools_set_html_head($element);
return $stored_head;
}