]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/default.php
Merge remote-tracking branch 'upstream/develop' into 1607-performance
[friendica.git] / view / theme / frio / php / default.php
1 <?php
2 /**
3  * @file view/theme/frio/php/modes/default.php
4  * @brief The default site template
5  */
6 ?>
7
8 <!DOCTYPE html >
9
10 <?php 
11         require_once('view/theme/frio/php/frio_boot.php');
12
13 //      $minimal = is_modal();
14
15 ?>
16
17 <html>
18 <head>
19         <title><?php if(x($page,'title')) echo $page['title'] ?></title>
20         <meta request="<?php echo htmlspecialchars($_REQUEST['pagename']) ?> ">
21         <script>var baseurl="<?php echo $a->get_baseurl() ?>";</script>
22         <script>var frio="<?php echo "view/theme/frio"; ?>";</script>
23         <?php $baseurl = $a->get_baseurl(); ?>
24         <?php $frio = "view/theme/frio"; ?>
25         <?php 
26                 // Because we use minimal for modals the header and the included js stuff should be only loaded
27                 // if the page is an standard page (so we don't have it twice for modals)
28                 // 
29                 /// @todo Think about to move js stuff in the footer
30                 if(!$minimal) {
31                         if(x($page,'htmlhead')) echo $page['htmlhead'];
32                 }
33         ?>
34         
35
36 </head>
37 <?php
38 if(($_SERVER['REQUEST_URI'] != "/register") && ($_SERVER['REQUEST_URI'] != "/lostpass") && ($_SERVER['REQUEST_URI'] != "/login"))
39 {
40         echo"<body id=\"top\">";
41 }
42 else
43 {
44         echo"<body id=\"top\">";
45 }
46 ?>
47 <a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
48 <?php
49         if(x($page,'nav') && (!$minimal)){
50         echo    str_replace("~config.sitename~",get_config('config','sitename'),
51                         str_replace("~system.banner~",get_config('system','banner'),
52                         $page['nav']
53         ));};
54
55         // special minimal style for modal dialogs
56         if($minimal) {
57 ?>
58                 <section class="minimal" style="margin:0px!important; padding:0px!important; float:none!important;display:block!important;"><?php if(x($page,'content')) echo $page['content']; ?>
59                         <div id="page-footer"></div>
60                 </section>
61 <?php   }
62         // the style for all other pages
63         else {
64 ?>      <main>
65                 <div class="container">
66                         <div class="row">
67 <?php
68                                 if(($_REQUEST['pagename'] != "register") && ($_REQUEST['pagename'] != "lostpass") && ($_REQUEST['pagename'] != "login") && ($_SERVER['REQUEST_URI'] != "/"))
69                                 {
70                                         echo"
71                                         <aside class=\"col-lg-3 col-md-3 offcanvas-sm offcanvas-xs\">
72                                                 "; if(x($page,'aside')) echo $page['aside']; echo"
73                                                 "; if(x($page,'right_aside')) echo $page['right_aside']; echo"
74                                         </aside>
75
76                                         <div class=\"col-lg-7 col-md-7 col-sm-12 col-xs-12\" id=\"content\">
77                                                 <section class=\"sectiontop "; echo $a->argv[0]; echo "-content-wrapper\">";
78                                                                 if(x($page,'content')) echo $page['content']; echo"
79                                                                 <div id=\"pause\"></div> <!-- The pause/resume Ajax indicator -->
80                                                 </section>
81                                         </div>
82                                                 ";
83                                 }
84                                 else
85                                 {
86                                         echo"
87                                         <div class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\" id=\"content\" style=\"margin-top:50px;\" >
88                                                 "; if(x($page,'content')) echo $page['content']; echo"
89                                         </div>
90                                         ";
91                                 }
92 ?>
93                 
94                         </div><!--row-->
95                 </div><!-- container -->
96
97                 <div id="back-to-top" title="back to top">&#8679;</div>
98         </main>
99
100 <footer>
101 <?php if(x($page,'footer')) echo $page['footer']; ?>
102 <!-- Modal  -->
103 <div id="modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="plan-info" aria-hidden="true">
104         <div class="modal-dialog modal-full-screen">
105                 <div class="modal-content">
106                         <div id="modal-header" class="modal-header">
107                                 <button id="modal-cloase" type="button" class="close" data-dismiss="modal" aria-hidden="true">
108                                         &times;
109                                 </button>
110                                 <h4 id="modal-title" class="modal-title"></h4>
111                         </div>
112                         <div id="modal-body" class="modal-body">
113                                 <!-- /# content goes here -->
114                         </div>
115                 </div>
116         </div>
117 </div>
118
119 <!-- Dummy div to append other div's when needed (e.g. used for js function editpost() -->
120 <div id="cache-container"></div>
121
122 </footer>
123 <?php } ?> <!-- End of condition if $minal else the rest -->
124 </body>