]> git.mxchange.org Git - friendica.git/blob - view/theme/smoothly/default.php
Merge remote branch 'upstream/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   <?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
7 </head>
8 <body>
9         <header>
10                 <?php if(x($page, 'header')) echo $page['header']; ?>
11         </header>
12
13         <?php if(x($page,'nav')) echo $page['nav']; ?>
14
15         <aside><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
16
17         <section><?php if(x($page,'content')) echo $page['content']; ?>
18                 <div id="page-footer"></div>
19         </section>
20
21         <right_aside><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
22
23         <footer id="footer">
24                 <?php if(x($page, 'footer')) echo $page['footer']; ?>
25         </footer>
26
27         <?php if (x($page, 'bottom')) echo $page['bottom']; ?>
28 </body>
29 </html>
30