2019-05-26 01:43:32 +08:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<!-- Required meta tags -->
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
|
|
|
|
<!-- Bootstrap CSS -->
|
2020-09-25 03:03:05 +08:00
|
|
|
<?php if($this->session->userdata('user_stylesheet')) { ?>
|
2020-12-07 01:28:47 +08:00
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/<?php echo $this->session->userdata('user_stylesheet');?>/bootstrap.min.css">
|
|
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/general.css">
|
|
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/<?php echo $this->session->userdata('user_stylesheet');?>/overrides.css">
|
|
|
|
|
<?php } else { ?>
|
|
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/default/bootstrap.min.css">
|
|
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/general.css">
|
|
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/default/overrides.css">
|
|
|
|
|
<?php } ?>
|
2019-05-26 01:43:32 +08:00
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/fontawesome/css/all.css">
|
|
|
|
|
|
2020-11-08 18:26:38 +08:00
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/jquery.fancybox.min.css" />
|
2019-05-26 01:43:32 +08:00
|
|
|
|
|
|
|
|
<!-- Maps -->
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>assets/js/leaflet/leaflet.css" />
|
|
|
|
|
|
|
|
|
|
<link rel="icon" href="<?php echo base_url(); ?>/favicon.ico">
|
|
|
|
|
|
|
|
|
|
<title><?php if(isset($page_title)) { echo $page_title; } ?> - Cloudlog</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|