| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <!DOCTYPE html>
- <html>
- <head>
- <title><?=admin_utils::getSiteName('INITIA CAPITAL')?> - <?=admin_utils::getSlogan('backend')?></title>
- <meta charset="utf-8">
- <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
-
- <link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
- <link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
- <link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
- <link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
- <link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
- <link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
- <link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
- <link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
- <link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
- <link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
- <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
- <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
- <link rel="manifest" href="/manifest.json">
- <meta name="msapplication-TileColor" content="#ffffff">
- <meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
- <meta name="theme-color" content="#ffffff">
- <!-- Bootstrap 3.3.2 -->
- <link href="<?php echo BASE_URL; ?>static/bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css" />
- <!-- FontAwesome 4.3.0 -->
- <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
- <!-- Ionicons 2.0.0 -->
- <link href="http://code.ionicframework.com/ionicons/2.0.0/css/ionicons.min.css" rel="stylesheet" type="text/css" />
- <!-- Theme style -->
- <link href="<?php echo BASE_URL; ?>static/dist/css/AdminLTE.css" rel="stylesheet" type="text/css" />
- <!-- AdminLTE Skins. Choose a skin from the css/skins
- folder instead of downloading all of them to reduce the load. -->
- <link href="<?php echo BASE_URL; ?>static/dist/css/skins/_all-skins.min.css" rel="stylesheet" type="text/css" />
- <!-- iCheck -->
- <link href="<?php echo BASE_URL; ?>static/plugins/iCheck/flat/blue.css" rel="stylesheet" type="text/css" />
- <!-- Morris chart -->
- <link href="<?php echo BASE_URL; ?>static/plugins/morris/morris.css" rel="stylesheet" type="text/css" />
- <!-- jvectormap -->
- <link href="<?php echo BASE_URL; ?>static/plugins/jvectormap/jquery-jvectormap-1.2.2.css" rel="stylesheet" type="text/css" />
- <!-- bootstrap wysihtml5 - text editor -->
- <link href="<?php echo BASE_URL; ?>static/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css" rel="stylesheet" type="text/css" />
-
- <link href="<?php echo BASE_URL; ?>static/plugins/datatables/dataTables.bootstrap.css" rel="stylesheet" type="text/css" />
-
- <link href="<?php echo BASE_URL; ?>static/css/jquery.tag-editor.css" rel="stylesheet">
- <link href="<?php echo BASE_URL; ?>static/css/orangebox.css" rel="stylesheet">
- <link href="<?php echo BASE_URL; ?>static/css/jquery.switchButton.css" rel="stylesheet">
- <link href="<?php echo BASE_URL; ?>static/js/select2/select2.css" rel="stylesheet">
-
- <link href="<?php echo BASE_URL; ?>static/css/jquery.modal.css" rel="stylesheet" type="text/css" />
-
- <link href="<?php echo BASE_URL; ?>static/css/admin.css" rel="stylesheet" type="text/css" />
- <link href="<?php echo BASE_URL; ?>static/css/SQLTable.css" rel="stylesheet" type="text/css" />
- <link href="<?php echo BASE_URL; ?>static/css/cropper_style.css" rel="stylesheet" type="text/css" />
- <link href="<?php echo BASE_URL; ?>static/css/jquery.datetimepicker.css" rel="stylesheet" type="text/css" />
- <link href="<?php echo BASE_URL; ?>static/css/fileuploader_style.css" rel="stylesheet" type="text/css" />
- <link rel="stylesheet" href="<?php echo BASE_URL; ?>static/trumbowyg/dist/ui/trumbowyg.min.css">
- <link rel="stylesheet" href="<?php echo BASE_URL; ?>static/trumbowyg/dist/plugins/colors/ui/trumbowyg.colors.css">
-
- <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
- <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
- <!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
- <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
- <![endif]-->
- <script>
- var active_page = '<?=$_SERVER['REQUEST_URI']?>';
- </script>
-
- </head>
- <body class="<?=admin_utils::getBaseColorScheme('skin-blue')?>">
- <div class="wrapper">
- <?php include 'admin_menu.php'; ?>
|