Files
atlastheme/plugins/default/theme/page/page.php
2021-07-28 00:32:13 +02:00

63 lines
2.0 KiB
PHP

<?php
/**
* Open Source Social Network
*
* @package (softlab24.com).ossn
* @author OSSN Core Team <info@softlab24.com>
* @copyright (C) SOFTLAB24 LIMITED
* @license Open Source Social Network License (OSSN LICENSE) http://www.opensource-socialnetwork.org/licence
* @link https://www.opensource-socialnetwork.org/
*/
$sitename = ossn_site_settings('site_name');
$sitelanguage = ossn_site_settings('language');
if (isset($params['title'])) {
$title = $params['title'] . ' : ' . $sitename;
} else {
$title = $sitename;
}
if (isset($params['contents'])) {
$contents = $params['contents'];
} else {
$contents = '';
}
?>
<!DOCTYPE html>
<html lang="<?php echo $sitelanguage; ?>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?php echo $title; ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="<?php echo ossn_add_cache_to_url(ossn_theme_url().'images/favicon.ico');?>" type="image/x-icon" />
<?php echo ossn_fetch_extend_views('ossn/endpoint'); ?>
<?php echo ossn_fetch_extend_views('ossn/site/head'); ?>
<script>
<?php echo ossn_fetch_extend_views('ossn/js/head'); ?>
</script>
</head>
<body>
<div class="ossn-page-loading-annimation">
<div class="ossn-page-loading-annimation-inner">
<div class="ossn-loading"></div>
</div>
</div>
<div class="ossn-halt ossn-light"></div>
<div class="ossn-message-box"></div>
<div class="ossn-viewer" style="display:none"></div>
<div class="opensource-socalnetwork">
<?php echo ossn_plugin_view('theme/page/elements/sidebar');?>
<div class="ossn-page-container">
<?php echo ossn_plugin_view('theme/page/elements/topbar');?>
<div class="ossn-inner-page">
<?php echo $contents; ?>
</div>
</div>
</div>
<?php echo ossn_fetch_extend_views('ossn/page/footer'); ?>
</body>
</html>