26 lines
No EOL
1.1 KiB
PHTML
26 lines
No EOL
1.1 KiB
PHTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<?=$this->headTitle() . "\n" /* Newline for pretty source :) */ ?>
|
|
<?=$this->headMeta() . "\n" /* Newline for pretty source :) */ ?>
|
|
<link rel="stylesheet" type="text/css" href="<?=$this->baseUrl()?>/css/reset.css" media="screen" />
|
|
<link rel="stylesheet" type="text/css" href="<?=$this->baseUrl()?>/fancybox/jquery.fancybox-1.3.1.css" media="screen" />
|
|
<?=$this->headScript() ?>
|
|
<script type="text/javascript" src="<?=$this->baseUrl()?>/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
|
|
<?=$this->fancybox()->headScript() ?>
|
|
</head>
|
|
<body>
|
|
<div id="wrapper" class="small">
|
|
|
|
<ul style="margin-bottom: 40px;">
|
|
<li><a href="<?=$this->url(array('controller' => 'index'), 'admin', true) ?>">Dashboard</a></li>
|
|
<li><a href="<?=$this->url(array('controller' => 'blog'), 'admin', true) ?>">Skapa ny blogpost</a></li>
|
|
</ul>
|
|
|
|
|
|
<?=$this->layout()->content ?>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|