simple interface ready: index page which lists all video assets and watch page to...
[living-lab-site.git] / application / views / html_begin.php
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
2 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4
5 <head>
6
7 <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
8
9 <title><?php echo $title ?></title>
10
11 <?php foreach ($stylesheets as $stylesheet): ?>
12 <link rel="stylesheet" type="text/css" href="<?php echo $stylesheet ?>" />
13 <?php endforeach ?>
14
15 <?php foreach ($javascripts as $javascript): ?>
16 <script type="text/javascript" src="<?php echo $javascript ?>"></script>
17 <?php endforeach ?>
18
19 <?php foreach ($metas as $meta_name => $meta_content): ?>
20 <meta name="<?php echo $meta_name ?>" content="<?php echo $meta_content ?>" /> 
21 <?php endforeach ?>
22
23 </head>
24
25 <body>