Example #1
0
File: common.php Project: hdp/brass
 public static function standard()
 {
     $me = new self();
     $me->opennode('html');
     $me->opennode('head');
     $me->emptyleaf('meta', 'http-equiv="Content-Type" content="text/html; charset=utf-8"');
     $me->emptyleaf('link', 'rel="shortcut icon" type="image/vnd.microsoft.icon" href="' . SITE_ADDRESS . 'favicon.ico"');
     $me->emptyleaf('link', 'rel="apple-touch-icon" href="' . SITE_ADDRESS . 'apple-touch-icon.png"');
     $me->emptyleaf('link', 'rel="stylesheet" type="text/css" href="http://orderofthehammer.com/brass.css"');
     return $me;
 }