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-12-13 06:03:42 +08:00
|
|
|
<?php if($this->optionslib->get_theme()) { ?>
|
|
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/<?php echo $this->optionslib->get_theme();?>/bootstrap.min.css">
|
2020-12-07 01:28:47 +08:00
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/general.css">
|
2020-12-13 06:03:42 +08:00
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/<?php echo $this->optionslib->get_theme();?>/overrides.css">
|
2020-12-07 01:28:47 +08:00
|
|
|
<?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" />
|
|
|
|
|
|
2021-04-10 11:03:44 +08:00
|
|
|
<?php if (file_exists(APPPATH.'third_party/assets/css/custom.css')) { echo '<link rel="stylesheet" href="'.base_url().'third_party/assets/css/custom.css">'; } ?>
|
|
|
|
|
|
|
|
|
|
<link rel="icon" href="<?php echo base_url(); ?>favicon.ico">
|
2019-05-26 01:43:32 +08:00
|
|
|
|
|
|
|
|
<title><?php if(isset($page_title)) { echo $page_title; } ?> - Cloudlog</title>
|
|
|
|
|
</head>
|
2021-04-10 11:03:44 +08:00
|
|
|
<body>
|