patashala/application/views/backend/index.php
Vivek a53135a78d Added based code
Added base code to the repo
2024-02-07 20:19:28 +05:30

37 lines
1.6 KiB
PHP
Executable File

<?php
$system_name = $this->db->get_where('settings' , array('type'=>'system_name'))->row()->description;
$system_title = $this->db->get_where('settings' , array('type'=>'system_title'))->row()->description;
$skin = $this->db->get_where('settings' , array('type'=>'skin'))->row()->description;
$account_type = $this->session->userdata('login_type');
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title><?php echo $page_title;?> | <?php echo $system_title;?></title>
<meta content="ie=edge" http-equiv="x-ua-compatible">
<meta content="template language" name="keywords">
<meta content="" name="author">
<meta content="Tam Pro School Management System" name="description">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="<?php echo base_url();?>uploads/favicon.png" rel="shortcut icon">
<?php if($skin == 'main'):?>
<link href="<?php echo base_url();?>style/cms/css/main.css" rel="stylesheet">
<?php endif;?>
<?php if($skin != 'main'):?>
<link href="<?php echo base_url();?>style/cms/css/themes/<?php echo $skin;?>.css" rel="stylesheet">
<?php endif;?>
<?php include 'topcss.php';?>
</head>
<body>
<div class="all-wrapper menu-side with-side-panel">
<div class="layout-w">
<?php include $account_type.'/navigation.php';?>
<?php include $account_type.'/'.$page_name.'.php';?>
</div>
<div class="display-type"></div>
</div>
<?php include 'modal.php';?>
<?php include 'scripts.php';?>
</body>
</html>