inital commit
This commit is contained in:
55
plugins/default/theme/page/page.php
Normal file
55
plugins/default/theme/page/page.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
/**
|
||||
* Open Source Social Network
|
||||
*
|
||||
* @package (Informatikon.com).ossn
|
||||
* @author OSSN Core Team <info@opensource-socialnetwork.org>
|
||||
* @copyright 2014 iNFORMATIKON TECHNOLOGIES
|
||||
* @license General Public Licence http://www.opensource-socialnetwork.org/licence
|
||||
* @link http://www.opensource-socialnetwork.org/licence
|
||||
*/
|
||||
$sitename = ossn_site_settings('site_name');
|
||||
if (isset($params['title'])) {
|
||||
$title = $params['title'] . ' : ' . $sitename;
|
||||
} else {
|
||||
$title = $sitename;
|
||||
}
|
||||
if (isset($params['contents'])) {
|
||||
$contents = $params['contents'];
|
||||
} else {
|
||||
$contents = '';
|
||||
}
|
||||
?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<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" />
|
||||
|
||||
<?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-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>
|
||||
Reference in New Issue
Block a user