<!DOCTYPE html>
<html lang="en">
<head>
<?php $this->load->view('includes/map-head'); ?>
</head>
<body class="fix-header card-no-border logo-center" data-baseurl="<?=base_url()?>">
<!-- ============================================================== -->
<!-- Preloader - style you can find in spinners.css -->
<!-- ============================================================== -->
<div class="preloader">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10" /> </svg>
</div>
<div id="main-wrapper">
<?php $this->load->view('includes/top-header'); ?>
<?php $this->load->view('includes/navigation'); ?>
<div class="page-wrapper">
<?php $this->load->view($content);?>
<?php $this->load->view('includes/footer'); ?>
</div>
</div>
<?php $this->load->view('includes/map-script'); ?>
</body>
</html>
|