2012-09-17 11:22:12 +02:00
|
|
|
<!DOCTYPE html >
|
|
|
|
<html>
|
|
|
|
<head>
|
2018-11-30 15:06:22 +01:00
|
|
|
<title><?php if(!empty($page['title'])) echo $page['title'] ?></title>
|
2017-08-26 09:32:10 +02:00
|
|
|
<script>var baseurl="<?php echo Friendica\Core\System::baseUrl() ?>";</script>
|
2012-10-23 10:22:39 +02:00
|
|
|
<script type="text/javascript">
|
|
|
|
function ScrollToBottom(){
|
|
|
|
window.scrollTo(0,document.body.scrollHeight);
|
|
|
|
}
|
|
|
|
</script>
|
2018-11-30 15:06:22 +01:00
|
|
|
<?php if(!empty($page['htmlhead'])) echo $page['htmlhead'] ?>
|
2012-09-17 11:22:12 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
2018-11-30 15:06:22 +01:00
|
|
|
<?php if(!empty($page['header'])) echo $page['header']; ?>
|
2012-09-17 11:22:12 +02:00
|
|
|
</header>
|
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
<?php if(!empty($page['nav'])) echo $page['nav']; ?>
|
2012-09-17 11:22:12 +02:00
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
<aside><?php if(!empty($page['aside'])) echo $page['aside']; ?></aside>
|
2012-09-17 11:22:12 +02:00
|
|
|
|
2016-02-09 16:41:19 +01:00
|
|
|
<section>
|
2018-11-30 15:06:22 +01:00
|
|
|
<?php if(!empty($page['content'])) echo $page['content']; ?>
|
2016-02-09 16:41:19 +01:00
|
|
|
<div id="pause"></div> <!-- The pause/resume Ajax indicator -->
|
2012-09-17 11:22:12 +02:00
|
|
|
<div id="page-footer"></div>
|
|
|
|
</section>
|
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
<right_aside><?php if(!empty($page['right_aside'])) echo $page['right_aside']; ?></right_aside>
|
2012-09-17 11:22:12 +02:00
|
|
|
|
|
|
|
<footer id="footer">
|
2018-11-30 15:06:22 +01:00
|
|
|
<?php if(!empty($page['footer'])) echo $page['footer']; ?>
|
2012-09-17 11:22:12 +02:00
|
|
|
</footer>
|
|
|
|
|
2013-05-08 14:46:42 +02:00
|
|
|
<tools id="tools">
|
2018-11-30 15:06:22 +01:00
|
|
|
<?php if (!empty($page['tools'])) echo $page['tools']; ?>
|
2013-05-08 14:46:42 +02:00
|
|
|
<div id="scrollup" >
|
|
|
|
<a class="item-scrollup" href="javascript:scrollTo(0,100000)"><img src="view/theme/smoothly/images/down.png" alt="to bottom" title="to bottom" /></a>
|
|
|
|
<a class="item-scrollup" href="javascript:scrollTo(0,0)"><img src="view/theme/smoothly/images/up.png" alt="to top" title="to top" /></a>
|
|
|
|
<a class="item-scrollup" href="logout"><img src="view/theme/smoothly/images/power.png" alt="power" title="power" /></a>
|
|
|
|
</div>
|
|
|
|
</tools>
|
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
<?php if (!empty($page['bottom'])) echo $page['bottom']; ?>
|
2012-09-17 11:22:12 +02:00
|
|
|
</body>
|
|
|
|
</html>
|