3 * @file view/theme/frio/php/modes/default.php
4 * @brief The default site template
9 require_once('view/theme/frio/php/frio_boot.php');
11 // $minimal = is_modal();
12 if (!isset($minimal)) {
18 <title><?php if(x($page,'title')) echo $page['title'] ?></title>
19 <meta request="<?php echo htmlspecialchars($_REQUEST['pagename']) ?>">
20 <script>var baseurl="<?php echo Friendica\Core\System::baseUrl() ?>";</script>
21 <script>var frio="<?php echo "view/theme/frio"; ?>";</script>
22 <?php $baseurl = Friendica\Core\System::baseUrl(); ?>
23 <?php $frio = "view/theme/frio"; ?>
25 // Because we use minimal for modals the header and the included js stuff should be only loaded
26 // if the page is an standard page (so we don't have it twice for modals)
28 /// @todo Think about to move js stuff in the footer
30 if(x($page,'htmlhead')) echo $page['htmlhead'];
34 // Add the theme color meta
35 // It makes mobile Chrome UI match Frio's top bar color.
36 $uid = $a->profile_uid;
38 $uid = get_theme_uid();
40 $schema = get_pconfig($uid, 'frio', 'schema');
41 if (($schema) && ($schema != '---')) {
42 if (file_exists('view/theme/frio/schema/'.$schema.'.php')) {
43 $schemefile = 'view/theme/frio/schema/'.$schema.'.php';
44 require_once($schemefile);
47 $nav_bg = get_pconfig($uid, 'frio', 'nav_bg');
52 echo '<meta name="theme-color" content="'.$nav_bg.'" />';
57 if(($_SERVER['REQUEST_URI'] != "/register") && ($_SERVER['REQUEST_URI'] != "/lostpass") && ($_SERVER['REQUEST_URI'] != "/login"))
59 echo"<body id=\"top\">";
63 echo"<body id=\"top\">";
66 <a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
68 if(x($page,'nav') && (!$minimal)){
69 echo str_replace("~config.sitename~",get_config('config','sitename'),
70 str_replace("~system.banner~",get_config('system','banner'),
74 // special minimal style for modal dialogs
77 <section class="minimal" style="margin:0px!important; padding:0px!important; float:none!important;display:block!important;"><?php if(x($page,'content')) echo $page['content']; ?>
78 <div id="page-footer"></div>
81 // the style for all other pages
84 <div class="container">
87 if(($_REQUEST['pagename'] != "lostpass") && ($_SERVER['REQUEST_URI'] != "/"))
90 <aside class=\"col-lg-3 col-md-3 offcanvas-sm offcanvas-xs\">
91 "; if(x($page,'aside')) echo $page['aside']; echo"
92 "; if(x($page,'right_aside')) echo $page['right_aside']; echo"
95 <div class=\"col-lg-7 col-md-7 col-sm-12 col-xs-12\" id=\"content\">
96 <section class=\"sectiontop "; echo $a->argv[0]; echo "-content-wrapper\">";
97 if(x($page,'content')) echo $page['content']; echo"
98 <div id=\"pause\"></div> <!-- The pause/resume Ajax indicator -->
106 <div class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\" id=\"content\" style=\"margin-top:50px;\" >
107 "; if(x($page,'content')) echo $page['content']; echo"
113 </div><!-- container -->
115 <div id="back-to-top" title="back to top">⇧</div>
119 <?php if(x($page,'footer')) echo $page['footer']; ?>
121 <div id="modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="plan-info" aria-hidden="true">
122 <div class="modal-dialog modal-full-screen">
123 <div class="modal-content">
124 <div id="modal-header" class="modal-header">
125 <button id="modal-cloase" type="button" class="close" data-dismiss="modal" aria-hidden="true">
128 <h4 id="modal-title" class="modal-title"></h4>
130 <div id="modal-body" class="modal-body">
131 <!-- /# content goes here -->
137 <!-- Dummy div to append other div's when needed (e.g. used for js function editpost() -->
138 <div id="cache-container"></div>
141 <?php } ?> <!-- End of condition if $minal else the rest -->