]> git.mxchange.org Git - friendica.git/blob - view/php/minimal.php
Merge branch 'bug/phpinfo-accessible-hotfix' into 2020.09-rc
[friendica.git] / view / php / minimal.php
1 <!DOCTYPE html >
2 <html>
3 <head>
4   <title><?php if(!empty($page['title'])) echo $page['title'] ?></title>
5   <script>var baseurl="<?php echo Friendica\DI::baseUrl() ?>";</script>
6   <?php if(!empty($page['htmlhead'])) echo $page['htmlhead'] ?>
7 </head>
8 <body class="minimal">
9         <section><?php if(!empty($page['content'])) echo $page['content']; ?>
10                 <div id="page-footer">
11                         <?php echo $page['footer'] ?? ''; ?>
12                 </div>
13         </section>
14 </body>
15 </html>