2012-03-28 11:52:28 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2012-04-14 01:30:07 +02:00
|
|
|
<title><?php if(x($page,'title')) echo $page['title']; ?></title>
|
2012-03-28 11:52:28 +02:00
|
|
|
<script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
|
2012-04-14 01:30:07 +02:00
|
|
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead']; ?>
|
2012-03-28 11:52:28 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2012-04-11 07:59:33 +02:00
|
|
|
<header>
|
2012-04-14 01:30:07 +02:00
|
|
|
<?php if(x($page, 'header')) echo $page['header']; ?>
|
2012-04-11 07:59:33 +02:00
|
|
|
</header>
|
|
|
|
<article id="articlemain">
|
2012-04-20 11:56:54 +02:00
|
|
|
<header id="articleheader">
|
|
|
|
<?php if(x($page, 'articleheader')) echo $page['articleheader']; ?>
|
|
|
|
</header>
|
2012-04-11 07:59:33 +02:00
|
|
|
<?php if(x($page,'nav')) echo $page['nav']; ?>
|
|
|
|
<aside id="asideleft">
|
|
|
|
<?php if(x($page,'aside_left')) echo $page['aside_left']; ?>
|
|
|
|
<?php if(x($page,'aside_left_bottom')) echo $page['aside_left_bottom']; ?>
|
|
|
|
</aside>
|
|
|
|
<section id="sectionmain">
|
|
|
|
<?php if(x($page,'content')) echo $page['content']; ?>
|
2012-04-20 11:56:54 +02:00
|
|
|
<footer id="sectionfooter">
|
|
|
|
</footer>
|
2012-04-11 07:59:33 +02:00
|
|
|
</section>
|
|
|
|
<aside id="asidemain">
|
|
|
|
<?php if(x($page,'aside')) echo $page['aside']; ?>
|
|
|
|
<?php if(x($page,'aside_bottom')) echo $page['aside_bottom']; ?>
|
|
|
|
</aside>
|
|
|
|
<aside id="asideright">
|
|
|
|
<?php if(x($page,'aside_right')) echo $page['aside_right']; ?>
|
|
|
|
<?php if(x($page,'aside_right_bottom')) echo $page['aside_right_bottom']; ?>
|
|
|
|
</aside>
|
2012-04-20 11:56:54 +02:00
|
|
|
<footer id="articlefooter">
|
|
|
|
<?php if(x($page, 'articlefooter')) echo $page['articlefooter']; ?>
|
|
|
|
</footer>
|
2012-04-11 07:59:33 +02:00
|
|
|
</article>
|
2012-04-15 09:18:55 +02:00
|
|
|
<footer id="footer">
|
|
|
|
<?php if(x($page, 'footer')) echo $page['footer']; ?>
|
2012-04-11 07:59:33 +02:00
|
|
|
</footer>
|
2012-04-15 09:18:55 +02:00
|
|
|
<?php if (x($page, 'bottom')) echo $page['bottom']; ?>
|
2012-03-28 11:52:28 +02:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|