2010-07-02 01:48:07 +02:00
|
|
|
<!DOCTYPE html >
|
2016-04-03 20:55:39 +02:00
|
|
|
<html itemscope itemtype="http://schema.org/Blog" lang="<?php echo $lang; ?>">
|
2010-07-02 01:48:07 +02:00
|
|
|
<head>
|
2010-11-01 00:38:22 +01:00
|
|
|
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
|
2016-12-19 14:26:13 +01:00
|
|
|
<script>var baseurl="<?php echo App::get_baseurl() ?>";</script>
|
2010-11-01 00:38:22 +01:00
|
|
|
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
|
2010-07-02 01:48:07 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2011-07-25 16:53:27 +02:00
|
|
|
<?php if(x($page,'nav')) echo $page['nav']; ?>
|
2010-11-01 00:38:22 +01:00
|
|
|
<aside><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
|
2016-02-09 15:54:35 +01:00
|
|
|
<section>
|
|
|
|
<?php if(x($page,'content')) echo $page['content']; ?>
|
|
|
|
<div id="pause"></div> <!-- The pause/resume Ajax indicator -->
|
2010-09-18 03:26:20 +02:00
|
|
|
<div id="page-footer"></div>
|
2013-10-25 23:33:53 +02:00
|
|
|
</section>
|
2012-03-23 02:36:34 +01:00
|
|
|
<right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
|
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>
|