2010-07-02 01:48:07 +02:00
|
|
|
<!DOCTYPE html >
|
|
|
|
<html>
|
|
|
|
<head>
|
2010-11-01 00:38:22 +01:00
|
|
|
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
|
|
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
|
2010-07-02 01:48:07 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2010-11-01 00:38:22 +01:00
|
|
|
<header><?php if(x($page,'header')) echo $page['header']; ?></header>
|
|
|
|
<nav><div id="top-margin"></div><?php if(x($page,'nav')) echo $page['nav']; ?></nav>
|
|
|
|
<aside><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
|
|
|
|
<section><?php if(x($page,'content')) echo $page['content']; ?>
|
2010-09-18 03:26:20 +02:00
|
|
|
<div id="page-footer"></div>
|
|
|
|
</section>
|
2010-11-01 00:38:22 +01:00
|
|
|
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
|
2010-07-02 01:48:07 +02:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|