friendica/view/theme/frio/php/default.php

147 wiersze
4.0 KiB
PHP
Czysty Zwykły widok Historia

2016-03-28 16:29:05 +02:00
<?php
/**
* @file view/theme/frio/php/modes/default.php
* @brief The default site template
*/
?>
<!DOCTYPE html >
2017-03-25 20:31:32 +01:00
<?php
2017-12-17 16:00:40 +01:00
use Friendica\Core\Config;
use Friendica\DI;
use Friendica\Model\Profile;
2017-12-17 16:00:40 +01:00
require_once 'view/theme/frio/php/frio_boot.php';
2016-03-28 16:29:05 +02:00
// $minimal = is_modal();
2017-12-17 16:00:40 +01:00
if (!isset($minimal)) {
$minimal = false;
}
$basepath = DI::baseUrl()->getUrlPath() ? "/" . DI::baseUrl()->getUrlPath() . "/" : "/";
2018-10-31 10:22:32 +01:00
$frio = "view/theme/frio";
$view_mode_class = (DI::mode()->isMobile() || DI::mode()->isMobile()) ? 'mobile-view' : 'desktop-view';
2018-10-31 10:22:32 +01:00
$is_singleuser = Config::get('system', 'singleuser');
$is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
2016-03-28 16:29:05 +02:00
?>
<html>
2017-12-17 16:00:40 +01:00
<head>
<title><?php if (!empty($page['title'])) echo $page['title'] ?></title>
<meta request="<?php echo htmlspecialchars($_REQUEST['pagename'] ?? '') ?>">
<script type="text/javascript">var baseurl = "<?php echo DI::baseUrl(); ?>";</script>
2017-12-17 16:00:40 +01:00
<script type="text/javascript">var frio = "<?php echo 'view/theme/frio'; ?>";</script>
2016-03-28 16:29:05 +02:00
<?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'];
2017-12-17 16:00:40 +01:00
}
// Add the theme color meta
// It makes mobile Chrome UI match Frio's top bar color.
$uid = Profile::getThemeUid($a);
$scheme = DI::pConfig()->get($uid, 'frio', 'scheme', DI::pConfig()->get($uid, 'frio', 'schema'));
if ($scheme && is_string($scheme) && $scheme != '---') {
2018-04-25 02:26:14 +02:00
if (file_exists('view/theme/frio/scheme/' . $scheme . '.php')) {
$schemefile = 'view/theme/frio/scheme/' . $scheme . '.php';
require_once $schemefile;
}
} else {
$nav_bg = DI::pConfig()->get($uid, 'frio', 'nav_bg');
}
2018-10-31 10:22:32 +01:00
2019-07-10 16:51:18 +02:00
if (empty($nav_bg)) {
2019-07-10 16:54:31 +02:00
$nav_bg = Config::get('frio', 'nav_bg');
2019-07-10 16:51:18 +02:00
}
2019-03-17 23:13:17 +01:00
if (empty($nav_bg) || !is_string($nav_bg)) {
$nav_bg = "#708fa0";
}
2018-10-31 10:22:32 +01:00
echo '<meta name="theme-color" content="' . $nav_bg . '" />';
2016-03-28 16:29:05 +02:00
?>
2017-12-17 16:00:40 +01:00
</head>
<body id="top" class="mod-<?php echo DI::module()->getName() . " " . $is_singleuser_class . " " . $view_mode_class;?>">
2017-12-17 16:00:40 +01:00
<a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
2016-03-28 16:29:05 +02:00
<?php
if (!empty($page['nav']) && !$minimal) {
2017-12-17 16:00:40 +01:00
echo str_replace(
"~config.sitename~",
Config::get('config', 'sitename'),
str_replace(
"~system.banner~",
Config::get('system', 'banner'),
$page['nav']
)
);
};
2016-03-28 16:29:05 +02:00
// special minimal style for modal dialogs
2017-12-17 16:00:40 +01:00
if ($minimal) {
2016-03-28 16:29:05 +02:00
?>
2019-07-10 16:54:31 +02:00
<!-- <?php echo __FILE__ ?> -->
2019-04-26 04:01:43 +02:00
<section class="minimal">
<?php if (!empty($page['content'])) echo $page['content']; ?>
2016-03-28 16:29:05 +02:00
<div id="page-footer"></div>
</section>
<?php
2017-12-17 16:00:40 +01:00
} 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 '
2017-12-17 16:00:40 +01:00
<aside class="col-lg-3 col-md-3 offcanvas-sm offcanvas-xs">';
if (!empty($page['aside'])) {
2017-12-17 16:00:40 +01:00
echo $page['aside'];
}
if (!empty($page['right_aside'])) {
2017-12-17 16:00:40 +01:00
echo $page['right_aside'];
}
echo '
2016-03-28 16:29:05 +02:00
</aside>
2017-12-17 16:00:40 +01:00
<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 -->
2016-03-28 16:29:05 +02:00
</section>
</div>
2017-12-17 16:00:40 +01:00
';
} else {
echo '
2017-12-17 16:00:40 +01:00
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12" id="content" style="margin-top:50px;">';
if (!empty($page['content'])) {
2017-12-17 16:00:40 +01:00
echo $page['content'];
}
echo '
2016-03-28 16:29:05 +02:00
</div>
2017-12-17 16:00:40 +01:00
';
}
2016-03-28 16:29:05 +02:00
?>
2017-12-17 16:00:40 +01:00
</div><!--row-->
</div><!-- container -->
2016-03-28 16:29:05 +02:00
2017-12-17 16:00:40 +01:00
<div id="back-to-top" title="back to top">&#8679;</div>
</main>
2016-03-28 16:29:05 +02:00
2017-12-17 16:00:40 +01:00
<footer>
<?php echo $page['footer'] ?? ''; ?>
2017-12-17 16:00:40 +01:00
</footer>
<?php } ?> <!-- End of condition if $minimal else the rest -->
</body>