friendica/view/php/default.php

20 lines
799 B
PHP
Raw Normal View History

2010-07-01 23:48:07 +00:00
<!DOCTYPE html >
<html itemscope itemtype="http://schema.org/Blog" lang="<?php echo $lang; ?>">
2010-07-01 23:48:07 +00:00
<head>
2010-10-31 23:38:22 +00:00
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
<script>var baseurl="<?php echo App::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>
<?php if(x($page,'nav')) echo $page['nav']; ?>
2010-10-31 23:38:22 +00:00
<aside><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
<section>
<?php if(x($page,'content')) echo $page['content']; ?>
<div id="pause"></div> <!-- The pause/resume Ajax indicator -->
<div id="page-footer"></div>
</section>
2012-03-23 01:36:34 +00:00
<right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
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>