]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/minimal.php
Merge pull request #8135 from annando/brief
[friendica.git] / view / theme / frio / 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"></div>
11         </section>
12         <!-- Modal  -->
13         <div id="modal" class="modal fade" tabindex="-1" role="dialog">
14                 <div class="modal-dialog modal-full-screen">
15                         <div class="modal-content">
16                                 <div id="modal-header" class="modal-header">
17                                         <button id="modal-cloase" type="button" class="close" data-dismiss="modal">
18                                                 &times;
19                                         </button>
20                                         <h4 id="modal-title" class="modal-title"></h4>
21                                 </div>
22                                 <div id="modal-body" class="modal-body">
23                                         <!-- /# content goes here -->
24                                 </div>
25                         </div>
26                 </div>
27         </div>
28 </body>
29 </html>
30