nextcloud/core/templates/layout.base.php

38 lines
1.5 KiB
PHP
Raw Normal View History

<!DOCTYPE html>
2013-03-03 16:57:20 +04:00
<!--[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]-->
<head>
<title>
<?php p($theme->getTitle()); ?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
2013-02-28 01:55:39 +04:00
<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): ?>
2013-02-28 01:55:39 +04:00
<link rel="stylesheet" href="<?php print_unescaped($cssfile); ?>" type="text/css" media="screen" />
<?php endforeach; ?>
<?php foreach ($_['jsfiles'] as $jsfile): ?>
2013-02-28 01:55:39 +04:00
<script type="text/javascript" src="<?php print_unescaped($jsfile); ?>"></script>
<?php endforeach; ?>
<?php foreach ($_['headers'] as $header): ?>
<?php
2013-02-28 01:55:39 +04:00
print_unescaped('<'.$header['tag'].' ');
foreach ($header['attributes'] as $name => $value) {
2013-02-28 01:55:39 +04:00
print_unescaped("$name='$value' ");
};
2013-02-28 02:19:38 +04:00
print_unescaped('/>');
?>
<?php endforeach; ?>
</head>
<body id="body-public">
2013-02-28 01:55:39 +04:00
<?php print_unescaped($_['content']); ?>
</body>
</html>