This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function basetheme_preprocess_html(&$vars) { | |
| $vars['theme_folder'] = base_path() . path_to_theme(); | |
| // Function to cleanup html source a bit more | |
| function indent($string) { | |
| $spacing = " "; | |
| $string = ltrim(str_replace('<link', $spacing . '<link', $string)); | |
| $string = ltrim(str_replace('<meta', $spacing . '<meta', $string)); | |
| $string = ltrim(str_replace('<script', $spacing . '<script', $string)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h1><?php print str_replace('[', '<span>', str_replace(']', '</span>', $h1_title)); ?></h1> | |
| of <h1><?php print str_replace(array('[', ']'), array('<span>', '</span>'), $h1_title); ?></h1> |
NewerOlder