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