2017-05-11 08:54:26 -04:00
|
|
|
<!DOCTYPE html >
|
|
|
|
<html itemscope itemtype="http://schema.org/Blog" lang="<?php echo $lang; ?>">
|
|
|
|
<head>
|
2018-11-30 09:06:22 -05:00
|
|
|
<title><?php if(!empty($page['title'])) echo $page['title'] ?></title>
|
2019-12-30 17:00:08 -05:00
|
|
|
<script>var baseurl="<?php echo Friendica\DI::baseUrl() ?>";</script>
|
2018-11-30 09:06:22 -05:00
|
|
|
<?php if(!empty($page['htmlhead'])) echo $page['htmlhead'] ?>
|
2017-05-11 08:54:26 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-11-30 09:06:22 -05:00
|
|
|
<?php if(!empty($page['nav'])) echo $page['nav']; ?>
|
|
|
|
<aside><?php if(!empty($page['aside'])) echo $page['aside']; ?></aside>
|
2017-05-11 08:54:26 -04:00
|
|
|
<section>
|
2018-11-30 09:06:22 -05:00
|
|
|
<?php if(!empty($page['content'])) echo $page['content']; ?>
|
2017-05-11 08:54:26 -04:00
|
|
|
<div id="pause"></div> <!-- The pause/resume Ajax indicator -->
|
|
|
|
<div id="page-footer"></div>
|
|
|
|
</section>
|
2018-11-30 09:06:22 -05:00
|
|
|
<right_aside><?php if(!empty($page['right_aside'])) echo $page['right_aside']; ?></right_aside>
|
|
|
|
<footer><?php if(!empty($page['footer'])) echo $page['footer']; ?></footer>
|
2017-05-11 08:54:26 -04:00
|
|
|
</body>
|
|
|
|
</html>
|