]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/minimal.php
Merge pull request #12042 from nupplaphil/feat/usersession_Module_DepInj
[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>
10                 <div  class="generic-page-wrapper">
11                         <?php if(!empty($page['content'])) echo $page['content']; ?>
12                 </div>
13                 <div id="page-footer">
14                         <?php echo $page['footer'] ?? ''; ?>
15                 </div>
16         </section>
17         <!-- Modal  -->
18         <div id="modal" class="modal fade" tabindex="-1" role="dialog">
19                 <div class="modal-dialog modal-full-screen">
20                         <div class="modal-content">
21                                 <div id="modal-header" class="modal-header">
22                                         <button id="modal-cloase" type="button" class="close" data-dismiss="modal">
23                                                 &times;
24                                         </button>
25                                         <h4 id="modal-title" class="modal-title"></h4>
26                                 </div>
27                                 <div id="modal-body" class="modal-body">
28                                         <!-- /# content goes here -->
29                                 </div>
30                         </div>
31                 </div>
32         </div>
33 </body>
34 </html>
35