/mvc/layouts/default
[return to app]1
<?php
2 $head['title'] = get::htmlentities(get::$title);
3 $head['meta'] = get::$meta;
4 $head['css'] = '/css/main.css?1';
5 $head['favicon'] = '/favicon.ico';
6 $head['animatedFavicon'] = '/favicon.gif';
7 //$head['metaheader']['X-UA-Compatible'] = 'IE=EmulateIE7';
8 //$head['head'][] = $html->css('/css/print.css?1', 'print');
9 echo $html->header($head);
10
11 if (isset($alert)) {
12 echo $html->getNotifications($alert);
13 }
14
15 echo $view;
16
17 //uncomment the next line to show your appreciation of Vork
18 //echo $html->div($html->link('http://www.Vork.us', 'Super-Powered by Vork, High-Performance Framework'));
19
20 echo $html->footer();