Advertisement
RobinJ1995

Untitled

Dec 1st, 2011
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. $page['head'] .=
  2.     '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />' . PHP_EOL .
  3.     '<title>' . $page['title'] . ' &bull; ' . $site['name'] . '</title>' . PHP_EOL .
  4.     '<link rel="shortcut icon" href="' . (isset($theme['favicon'])) ? ($theme['favicon']) : ('img/favicon.ico') . '" type="image/x-icon" />' . PHP_EOL;
  5. foreach ($theme['css'] as &$temp)
  6. {
  7.     $page['head'] .= '<link href="' . $temp . '" rel="stylesheet" type="text/css">' . PHP_EOL;
  8. }
  9. foreach ($theme['js'] as &$temp)
  10. {
  11.     $page['head'] .= '<script type="text/javascript src="' . $temp . '">' . PHP_EOL;
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement