2010-07-01 23:48:07 +00:00
|
|
|
<!DOCTYPE html >
|
|
|
|
<html>
|
|
|
|
<head>
|
2010-10-31 23:38:22 +00:00
|
|
|
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
2011-06-30 14:42:27 +00:00
|
|
|
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
|
2010-10-31 23:38:22 +00:00
|
|
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
|
2010-07-01 23:48:07 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2010-10-31 23:38:22 +00: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 01:26:20 +00:00
|
|
|
<div id="page-footer"></div>
|
|
|
|
</section>
|
2010-10-31 23:38:22 +00:00
|
|
|
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
|
2010-07-01 23:48:07 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|