Modifications for module installer in openemr.
[openemr.git] / interface / modules / zend_modules / module / Application / view / layout / layout.phtml
blobf9ed3f9471145d81ad8d8486abb2516e6068f49c
1 <?php echo $this->doctype(); ?>
3 <html lang="en">
4     <head>
5         <meta charset="utf-8">
6         <?php echo $this->headTitle('ZF2 '. $this->translate('Skeleton Application'))->setSeparator(' - ')->setAutoEscape(false) ?>
8         <?php echo $this->headMeta()->appendName('viewport', 'width=device-width, initial-scale=1.0') ?>
10         <!-- Le styles -->
11         <?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/images/favicon.ico'))
12                         ->prependStylesheet($this->basePath() . '/css/bootstrap-responsive.min.css')
13                         ->prependStylesheet($this->basePath() . '/css/style.css')
14                         ->prependStylesheet($this->basePath() . '/css/bootstrap.min.css') ?>
16         <!-- Scripts -->
17         <?php echo $this->headScript()->prependFile($this->basePath() . '/js/html5.js', 'text/javascript', array('conditional' => 'lt IE 9',))
18                                       ->prependFile($this->basePath() . '/js/bootstrap.min.js')
19                                       ->prependFile($this->basePath() . '/js/jquery.min.js') ?>
20     </head>
21     <body>
22         <div class="container">
23             <?php echo $this->content; ?>
24             <hr>
25             <footer>
26                 <p></p>
27             </footer>
28         </div> <!-- /container -->
29         <?php echo $this->inlineScript() ?>
30     </body>
31 </html>