]> git.mxchange.org Git - friendica.git/blob - view/php/default.php
Merge pull request #7988 from friendica/MrPetovan-notice
[friendica.git] / view / php / default.php
1 <!DOCTYPE html >
2 <html itemscope itemtype="http://schema.org/Blog" lang="<?php echo $lang; ?>">
3 <head>
4   <title><?php if(!empty($page['title'])) echo $page['title'] ?></title>
5   <script>var baseurl="<?php echo Friendica\Core\System::baseUrl() ?>";</script>
6   <?php if(!empty($page['htmlhead'])) echo $page['htmlhead'] ?>
7 </head>
8 <body>
9         <?php if(!empty($page['nav'])) echo $page['nav']; ?>
10         <aside><?php if(!empty($page['aside'])) echo $page['aside']; ?></aside>
11         <section>
12                 <?php if(!empty($page['content'])) echo $page['content']; ?>
13                 <div id="pause"></div> <!-- The pause/resume Ajax indicator -->
14                 <div id="page-footer"></div>
15         </section>
16         <right_aside><?php if(!empty($page['right_aside'])) echo $page['right_aside']; ?></right_aside>
17         <footer><?php if(!empty($page['footer'])) echo $page['footer']; ?></footer>
18 </body>
19 </html>