Blame view

sources/core/templates/layout.base.php 1.45 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
  <!DOCTYPE html>
  <!--[if lt IE 7]><html class="ng-csp ie ie6 lte9 lte8 lte7"><![endif]-->
  <!--[if IE 7]><html class="ng-csp ie ie7 lte9 lte8 lte7"><![endif]-->
  <!--[if IE 8]><html class="ng-csp ie ie8 lte9 lte8"><![endif]-->
  <!--[if IE 9]><html class="ng-csp ie ie9 lte9"><![endif]-->
  <!--[if gt IE 9]><html class="ng-csp ie"><![endif]-->
  <!--[if !IE]><!--><html class="ng-csp"><!--<![endif]-->
03e52840d   Kload   Init
8
9
  	<head>
  		<title>
31b7f2792   Kload   Upgrade to ownclo...
10
  		<?php p($theme->getTitle()); ?>
03e52840d   Kload   Init
11
12
  		</title>
  		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
31b7f2792   Kload   Upgrade to ownclo...
13
  		<meta name="viewport" content="width=device-width, initial-scale=1.0">
03e52840d   Kload   Init
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  		<link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" />
  		<link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" />
  		<?php foreach ($_['cssfiles'] as $cssfile): ?>
  			<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen" />
  		<?php endforeach; ?>
  		<?php foreach ($_['jsfiles'] as $jsfile): ?>
  			<script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script>
  		<?php endforeach; ?>
  		<?php foreach ($_['headers'] as $header): ?>
  			<?php
  				print_unescaped('<'.$header['tag'].' ');
  				foreach ($header['attributes'] as $name => $value) {
  					print_unescaped("$name='$value' ");
  				};
  				print_unescaped('/>');
  			?>
  		<?php endforeach; ?>
  	</head>
  
  	<body>
  		<?php print_unescaped($_['content']); ?>
  	</body>
  </html>