2019-05-25 18:43:32 +01: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-12 22:03:42 +00: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-06 17:28:47 +00:00
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/general.css">
|
2020-12-12 22:03:42 +00:00
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/<?php echo $this->optionslib->get_theme();?>/overrides.css">
|
2020-12-06 17:28:47 +00:00
|
|
|
<?php } ?>
|
2019-05-25 18:43:32 +01:00
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/fontawesome/css/all.css">
|
|
|
|
|
|
2020-11-08 11:26:38 +01:00
|
|
|
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/css/jquery.fancybox.min.css" />
|
2019-05-25 18:43:32 +01:00
|
|
|
|
2026-07-06 17:18:39 +01:00
|
|
|
<?php
|
2026-08-06 14:48:05 +01:00
|
|
|
$load_leaflet = in_array($this->uri->segment(1), [NULL, '', 'dashboard', 'logbook', 'logbookadvanced', 'gridmap', 'activated_gridmap', 'qso', 'map', 'search', 'activators', 'activatorsmap'], true)
|
2026-07-06 17:18:39 +01:00
|
|
|
|| ($this->uri->segment(1) == 'awards' && in_array($this->uri->segment(2), ['cq', 'iota', 'dxcc', 'ffma', 'gridmaster', 'waja', 'was', 'sota', 'pota'], true));
|
|
|
|
|
?>
|
2019-05-25 18:43:32 +01:00
|
|
|
|
2026-07-06 17:18:39 +01:00
|
|
|
<!-- Maps -->
|
|
|
|
|
<?php if ($load_leaflet) { ?>
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>assets/js/leaflet/leaflet.css" />
|
|
|
|
|
<?php } ?>
|
2021-04-10 05:03:44 +02:00
|
|
|
|
|
|
|
|
<link rel="icon" href="<?php echo base_url(); ?>favicon.ico">
|
2019-05-25 18:43:32 +01:00
|
|
|
|
|
|
|
|
<title><?php if(isset($page_title)) { echo $page_title; } ?> - Cloudlog</title>
|
|
|
|
|
</head>
|
2021-04-10 05:03:44 +02:00
|
|
|
<body>
|