]> git.mxchange.org Git - friendica.git/blob - view/theme/smoothly/default.php
Merge pull request #515 from simonlnu/master
[friendica.git] / view / theme / smoothly / default.php
1 <!DOCTYPE html >
2 <html>
3 <head>
4   <title><?php if(x($page,'title')) echo $page['title'] ?></title>
5   <script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
6   <script type="text/javascript">
7         function ScrollToBottom(){
8         window.scrollTo(0,document.body.scrollHeight);
9         }
10   </script>
11   <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
12 </head>
13 <body>
14         <header>
15                 <?php if(x($page, 'header')) echo $page['header']; ?>
16         </header>
17
18         <?php if(x($page,'nav')) echo $page['nav']; ?>
19
20         <aside><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
21
22         <section><?php if(x($page,'content')) echo $page['content']; ?>
23                 <div id="page-footer"></div>
24         </section>
25
26         <right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
27
28         <footer id="footer">
29                 <?php if(x($page, 'footer')) echo $page['footer']; ?>
30         </footer>
31
32         <?php if (x($page, 'bottom')) echo $page['bottom']; ?>
33 </body>
34 </html>
35