]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/default.php
Merge pull request #223 from campino/master
[friendica.git] / view / theme / dispy / 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         <?php if(x($page,'nav')) echo $page['nav']; ?>
10         <aside id="asideleft">
11                 <?php if(x($page,'aside')) echo $page['aside']; ?>
12                 <?php if(x($page,'aside_bottom')) echo $page['aside_bottom']; ?>
13         </aside>
14         <section>
15                 <?php if(x($page,'content')) echo $page['content']; ?>
16                 <div id="page-footer"></div>
17         </section>
18         <aside id="asideright">
19                 <?php if(x($page,'aside_right')) echo $page['aside_right']; ?>
20                 <?php if(x($page,'aside_right_bottom')) echo $page['aside_right_bottom']; ?>
21         </aside>
22         <footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
23 </body>
24 </html>
25