Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
142 lines
4.0 KiB
142 lines
4.0 KiB
<?php |
|
/** |
|
* @file view/theme/frio/php/modes/default.php |
|
* @brief The default site template |
|
*/ |
|
?> |
|
<!DOCTYPE html > |
|
<?php |
|
|
|
use Friendica\Core\Config; |
|
use Friendica\Core\PConfig; |
|
use Friendica\Core\System; |
|
use Friendica\Model\Profile; |
|
|
|
require_once 'view/theme/frio/php/frio_boot.php'; |
|
|
|
// $minimal = is_modal(); |
|
if (!isset($minimal)) { |
|
$minimal = false; |
|
} |
|
|
|
$basepath = $a->getURLPath() ? "/" . $a->getURLPath() . "/" : "/"; |
|
$frio = "view/theme/frio"; |
|
$view_mode_class = ($a->is_mobile || $a->is_tablet) ? 'mobile-view' : 'desktop-view'; |
|
$is_singleuser = Config::get('system', 'singleuser'); |
|
$is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser"; |
|
?> |
|
<html> |
|
<head> |
|
<title><?php if (!empty($page['title'])) echo $page['title'] ?></title> |
|
<meta request="<?php echo htmlspecialchars(defaults($_REQUEST, 'pagename', '')) ?>"> |
|
<script type="text/javascript">var baseurl = "<?php echo System::baseUrl(); ?>";</script> |
|
<script type="text/javascript">var frio = "<?php echo 'view/theme/frio'; ?>";</script> |
|
<?php |
|
// Because we use minimal for modals the header and the included js stuff should be only loaded |
|
// if the page is an standard page (so we don't have it twice for modals) |
|
// |
|
/// @todo Think about to move js stuff in the footer |
|
if (!$minimal && !empty($page['htmlhead'])) { |
|
echo $page['htmlhead']; |
|
} |
|
|
|
// Add the theme color meta |
|
// It makes mobile Chrome UI match Frio's top bar color. |
|
$uid = Profile::getThemeUid($a); |
|
$scheme = PConfig::get($uid, 'frio', 'scheme', PConfig::get($uid, 'frio', 'schema')); |
|
if ($scheme && is_string($scheme) && $scheme != '---') { |
|
if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) { |
|
$schemefile = 'view/theme/frio/scheme/' . $scheme . '.php'; |
|
require_once $schemefile; |
|
} |
|
} else { |
|
$nav_bg = PConfig::get($uid, 'frio', 'nav_bg'); |
|
} |
|
|
|
if (empty($nav_bg)) { |
|
$nav_bg = "#708fa0"; |
|
} |
|
|
|
echo '<meta name="theme-color" content="' . $nav_bg . '" />'; |
|
?> |
|
</head> |
|
|
|
<body id="top" class="mod-<?php echo $a->module . " " . $is_singleuser_class . " " . $view_mode_class;?>"> |
|
<a href="#content" class="sr-only sr-only-focusable">Skip to main content</a> |
|
<?php |
|
if (!empty($page['nav']) && !$minimal) { |
|
echo str_replace( |
|
"~config.sitename~", |
|
Config::get('config', 'sitename'), |
|
str_replace( |
|
"~system.banner~", |
|
Config::get('system', 'banner'), |
|
$page['nav'] |
|
) |
|
); |
|
}; |
|
|
|
// special minimal style for modal dialogs |
|
if ($minimal) { |
|
?> |
|
<section class="minimal" style="margin:0px!important; padding:0px!important; float:none!important; display:block!important;"> |
|
<?php if (!empty($page['content'])) echo $page['content']; ?> |
|
<div id="page-footer"></div> |
|
</section> |
|
<?php |
|
} else { |
|
// the style for all other pages |
|
?> |
|
<main> |
|
<div class="container"> |
|
<div class="row"> |
|
<?php |
|
if ((empty($_REQUEST['pagename']) || $_REQUEST['pagename'] != "lostpass") && ($_SERVER['REQUEST_URI'] != $basepath)) { |
|
echo ' |
|
<aside class="col-lg-3 col-md-3 offcanvas-sm offcanvas-xs">'; |
|
|
|
if (!empty($page['aside'])) { |
|
echo $page['aside']; |
|
} |
|
|
|
if (!empty($page['right_aside'])) { |
|
echo $page['right_aside']; |
|
} |
|
|
|
echo ' |
|
</aside> |
|
|
|
<div class="col-lg-7 col-md-7 col-sm-12 col-xs-12" id="content"> |
|
<section class="sectiontop '; |
|
echo $a->argv[0]; |
|
echo '-content-wrapper">'; |
|
if (!empty($page['content'])) { |
|
echo $page['content']; |
|
} |
|
echo ' |
|
<div id="pause"></div> <!-- The pause/resume Ajax indicator --> |
|
</section> |
|
</div> |
|
'; |
|
} else { |
|
echo ' |
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" id="content" style="margin-top:50px;">'; |
|
if (!empty($page['content'])) { |
|
echo $page['content']; |
|
} |
|
echo ' |
|
</div> |
|
'; |
|
} |
|
?> |
|
</div><!--row--> |
|
</div><!-- container --> |
|
|
|
<div id="back-to-top" title="back to top">⇧</div> |
|
</main> |
|
|
|
<footer> |
|
<?php echo defaults($page, 'footer', ''); ?> |
|
</footer> |
|
<?php } ?> <!-- End of condition if $minimal else the rest --> |
|
</body>
|
|
|