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