]> git.mxchange.org Git - friendica.git/blob - view/php/default.php
api: fix `friendica/notification/seen` api call
[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(x($page,'title')) echo $page['title'] ?></title>
5   <script>var baseurl="<?php echo Friendica\Core\System::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><?php if(x($page,'aside')) echo $page['aside']; ?></aside>
11         <section>
12                 <?php if(x($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(x($page,'right_aside')) echo $page['right_aside']; ?></right_aside>
17         <footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
18 </body>
19 </html>