]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/php/default.php
Frio - some cleanups for default.php
[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
10 use Friendica\Core\Config;
11 use Friendica\Core\PConfig;
12 use Friendica\Core\System;
13 use Friendica\Model\Profile;
14
15 require_once 'view/theme/frio/php/frio_boot.php';
16
17 //      $minimal = is_modal();
18 if (!isset($minimal)) {
19         $minimal = false;
20 }
21
22 $basepath = $a->getURLPath() ? "/" . $a->getURLPath() . "/" : "/";
23 $frio = "view/theme/frio";
24 $view_mode_class = ($a->is_mobile || $a->is_tablet) ? 'mobile-view' : 'desktop-view';
25 $is_singleuser = Config::get('system', 'singleuser');
26 $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
27 ?>
28 <html>
29         <head>
30                 <title><?php if (!empty($page['title'])) echo $page['title'] ?></title>
31                 <meta request="<?php echo htmlspecialchars(defaults($_REQUEST, 'pagename', '')) ?>">
32                 <script  type="text/javascript">var baseurl = "<?php echo System::baseUrl(); ?>";</script>
33                 <script type="text/javascript">var frio = "<?php echo 'view/theme/frio'; ?>";</script>
34 <?php
35                 // Because we use minimal for modals the header and the included js stuff should be only loaded
36                 // if the page is an standard page (so we don't have it twice for modals)
37                 //
38                 /// @todo Think about to move js stuff in the footer
39                 if (!$minimal && x($page, 'htmlhead')) {
40                         echo $page['htmlhead'];
41                 }
42
43                 // Add the theme color meta
44                 // It makes mobile Chrome UI match Frio's top bar color.
45                 $uid = $a->profile_uid;
46                 if (is_null($uid)) {
47                         $uid = Profile::getThemeUid();
48                 }
49                 $scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema'));
50                 if ($scheme && ($scheme != '---')) {
51                         if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) {
52                                 $schemefile = 'view/theme/frio/scheme/' . $scheme . '.php';
53                                 require_once $schemefile;
54                         }
55                 } else {
56                         $nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
57                 }
58
59                 if (empty($nav_bg)) {
60                         $nav_bg = "#708fa0";
61                 }
62
63                 echo '<meta name="theme-color" content="' . $nav_bg . '" />';
64 ?>
65         </head>
66
67         <body id="top" class="mod-<?php echo $a->module . " " . $is_singleuser_class . " " . $view_mode_class;?>">
68                 <a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
69 <?php
70         if (x($page, 'nav') && !$minimal) {
71                 echo str_replace(
72                         "~config.sitename~",
73                         Config::get('config', 'sitename'),
74                         str_replace(
75                                 "~system.banner~",
76                                 Config::get('system', 'banner'),
77                                 $page['nav']
78                         )
79                 );
80         };
81
82         // special minimal style for modal dialogs
83         if ($minimal) {
84 ?>
85                 <section class="minimal" style="margin:0px!important; padding:0px!important; float:none!important; display:block!important;">
86                         <?php if (x($page, 'content')) echo $page['content']; ?>
87                         <div id="page-footer"></div>
88                 </section>
89 <?php
90         } else {
91                 // the style for all other pages
92 ?>
93                 <main>
94                         <div class="container">
95                                 <div class="row">
96 <?php
97                                 if ((!x($_REQUEST, 'pagename') || $_REQUEST['pagename'] != "lostpass") && ($_SERVER['REQUEST_URI'] != $basepath)) {
98                                         echo '
99                                         <aside class="col-lg-3 col-md-3 offcanvas-sm offcanvas-xs">';
100
101                                                 if (x($page, 'aside')) {
102                                                         echo $page['aside'];
103                                                 }
104
105                                                 if (x($page, 'right_aside')) {
106                                                         echo $page['right_aside'];
107                                                 }
108
109                                                 echo '
110                                         </aside>
111
112                                         <div class="col-lg-7 col-md-7 col-sm-12 col-xs-12" id="content">
113                                                 <section class="sectiontop ';
114                                                         echo $a->argv[0];
115                                                         echo '-content-wrapper">';
116                                                         if (x($page, 'content')) {
117                                                                 echo $page['content'];
118                                                         }
119                                                         echo '
120                                                         <div id="pause"></div> <!-- The pause/resume Ajax indicator -->
121                                                 </section>
122                                         </div>
123                                                 ';
124                                 } else {
125                                         echo '
126                                         <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" id="content" style="margin-top:50px;">';
127                                                 if (x($page, 'content')) {
128                                                         echo $page['content'];
129                                                 }
130                                                 echo '
131                                         </div>
132                                         ';
133                                 }
134 ?>
135                                 </div><!--row-->
136                         </div><!-- container -->
137
138                         <div id="back-to-top" title="back to top">&#8679;</div>
139                 </main>
140
141                 <footer>
142                         <?php echo defaults($page, 'footer', ''); ?>
143                 </footer>
144 <?php } ?> <!-- End of condition if $minimal else the rest -->
145         </body>