36 lines
1.6 KiB
PHTML
36 lines
1.6 KiB
PHTML
<?php echo $this->doctype(); ?>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<?php $config = \Sookon\Helpers\Config::get(); ?>
|
|
<?php echo $this->headTitle($config->site_title)->setSeparator(' - ')->setAutoEscape(false) ?>
|
|
|
|
<?php echo $this->headMeta()
|
|
->appendName('viewport', 'width=device-width, initial-scale=1.0')
|
|
->appendHttpEquiv('X-UA-Compatible', 'IE=edge')
|
|
?>
|
|
|
|
<?php echo $this->headLink(array('rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/favicon.ico'))
|
|
->prependStylesheet($this->basePath() . '/css/style.css')
|
|
->prependStylesheet($this->basePath() . '/css/bootstrap-theme.min.css')
|
|
->prependStylesheet($this->basePath() . '/css/bootstrap.min.css') ?>
|
|
|
|
<?php echo $this->headScript()
|
|
->prependFile($this->basePath() . '/js/bootstrap.min.js')
|
|
->prependFile($this->basePath() . '/js/jquery.min.js')
|
|
->prependFile($this->basePath() . '/js/respond.min.js', 'text/javascript', array('conditional' => 'lt IE 9',))
|
|
->prependFile($this->basePath() . '/js/html5shiv.js', 'text/javascript', array('conditional' => 'lt IE 9',))
|
|
; ?>
|
|
|
|
</head>
|
|
<body>
|
|
<?php echo $this->partial('layout/admin/header');?>
|
|
<div><?php echo $this->content; ?><hr></div> <!-- /container -->
|
|
<?php echo $this->partial('layout/admin/footer');?>
|
|
<?php echo $this->inlineScript() ?>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|