]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/default.php
Merge commit 'upstream/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         <header>
10                 <?php if(x($page, 'header')) echo $page['header']; ?>
11         </header>
12         <article id="articlemain">
13                 <?php if(x($page,'nav')) echo $page['nav']; ?>
14                 <aside id="asideleft">
15                         <?php if(x($page,'aside_left')) echo $page['aside_left']; ?>
16                         <?php if(x($page,'aside_left_bottom')) echo $page['aside_left_bottom']; ?>
17                 </aside>
18                 <section id="sectionmain">
19                         <?php if(x($page,'content')) echo $page['content']; ?>
20                         <footer id="section-footer"></footer>
21                 </section>
22                 <aside id="asidemain">
23                         <?php if(x($page,'aside')) echo $page['aside']; ?>
24                         <?php if(x($page,'aside_bottom')) echo $page['aside_bottom']; ?>
25                 </aside>
26                 <aside id="asideright">
27                         <?php if(x($page,'aside_right')) echo $page['aside_right']; ?>
28                         <?php if(x($page,'aside_right_bottom')) echo $page['aside_right_bottom']; ?>
29                 </aside>
30         </article>
31         <footer id="footer">
32                 <?php if(x($page, 'footer')) echo $page['footer']; ?>
33         </footer>
34         <?php if (x($page, 'bottom')) echo $page['bottom']; ?>
35 </body>
36 </html>
37