]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy/default.php
Merge https://github.com/friendica/dir into dpull
[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                 <header id="articleheader">
14                         <?php if(x($page, 'articleheader')) echo $page['articleheader']; ?>
15                 </header>
16                 <?php if(x($page,'nav')) echo $page['nav']; ?>
17                 <aside id="asideleft">
18                         <?php if(x($page,'aside_left')) echo $page['aside_left']; ?>
19                         <?php if(x($page,'aside_left_bottom')) echo $page['aside_left_bottom']; ?>
20                 </aside>
21                 <section id="sectionmain">
22                         <?php if(x($page,'content')) echo $page['content']; ?>
23                         <footer id="sectionfooter">
24                         </footer>
25                 </section>
26                 <aside id="asidemain">
27                         <?php if(x($page,'aside')) echo $page['aside']; ?>
28                         <?php if(x($page,'aside_bottom')) echo $page['aside_bottom']; ?>
29                 </aside>
30                 <aside id="asideright">
31                         <?php if(x($page,'aside_right')) echo $page['aside_right']; ?>
32                         <?php if(x($page,'aside_right_bottom')) echo $page['aside_right_bottom']; ?>
33                 </aside>
34                 <footer id="articlefooter">
35                         <?php if(x($page, 'articlefooter')) echo $page['articlefooter']; ?>
36                 </footer>
37         </article>
38         <footer id="footer">
39                 <?php if(x($page, 'footer')) echo $page['footer']; ?>
40         </footer>
41         <?php if (x($page, 'bottom')) echo $page['bottom']; ?>
42 </body>
43 </html>
44