<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="sv">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="keywords" content="CMS" />
<meta name="description" content="Dev's CMS - Simple and easy-to-use CMS" />
<title><?= !empty($title) ? $title.' - ' : '' ?>Dev's CMS</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<!--[if lte IE 6]><link rel="stylesheet" type="text/css" href="styleIE6.css" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" type="text/css" href="styleIE7.css" /><![endif]-->
<style type="text/css">
* { padding:0; margin:0; } a img { border:0; } h1,h2,h3,h4,h5 { font-weight:normal; font-family:Cambria, Georgia, Times, Times New Roman, serif; }
body { font-family:GillSans, Calibri, Trebuchet; }
a { color:green; text-decoration:none; }
a:hover { color:white; background:green; }
h1 { padding:5px 0 15px; }
h2,h3 { padding:10px 0 5px; }
#menu, ul.files { list-style-type:none; }
#menu { margin:20px 0 0 30px; float:left; }
#container { float:left; margin: 10px 0 0 70px; }
.files .fileinfo span { font-size:90%; font-style:italic; }
.newsitem .date { font-style:italic; font-size:80%; margin-bottom:-3px; }
</style>
<?= $js ?><?= $css ?>
</head>
<body>
<ul id="menu">
<? foreach ($menu as $item): ?>
<li><?= str_repeat('-', $item['level']) ?> <a href="?p=<?= $item['link'] ?>"><?= $item['title'] ?></a></li>
<? endforeach; ?>
</ul>
<div id="container">
<?= $content ?>
</div>
</body>
</html>