admin_header.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title><?=admin_utils::getSiteName('INITIA CAPITAL')?> - <?=admin_utils::getSlogan('backend')?></title>
  5. <meta charset="utf-8">
  6. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  7. <link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
  8. <link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
  9. <link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
  10. <link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
  11. <link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
  12. <link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
  13. <link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
  14. <link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
  15. <link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
  16. <link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
  17. <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
  18. <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
  19. <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
  20. <link rel="manifest" href="/manifest.json">
  21. <meta name="msapplication-TileColor" content="#ffffff">
  22. <meta name="msapplication-TileImage" content="/ms-icon-144x144.png">
  23. <meta name="theme-color" content="#ffffff">
  24. <!-- Bootstrap 3.3.2 -->
  25. <link href="<?php echo BASE_URL; ?>static/bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css" />
  26. <!-- FontAwesome 4.3.0 -->
  27. <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
  28. <!-- Ionicons 2.0.0 -->
  29. <link href="http://code.ionicframework.com/ionicons/2.0.0/css/ionicons.min.css" rel="stylesheet" type="text/css" />
  30. <!-- Theme style -->
  31. <link href="<?php echo BASE_URL; ?>static/dist/css/AdminLTE.css" rel="stylesheet" type="text/css" />
  32. <!-- AdminLTE Skins. Choose a skin from the css/skins
  33. folder instead of downloading all of them to reduce the load. -->
  34. <link href="<?php echo BASE_URL; ?>static/dist/css/skins/_all-skins.min.css" rel="stylesheet" type="text/css" />
  35. <!-- iCheck -->
  36. <link href="<?php echo BASE_URL; ?>static/plugins/iCheck/flat/blue.css" rel="stylesheet" type="text/css" />
  37. <!-- Morris chart -->
  38. <link href="<?php echo BASE_URL; ?>static/plugins/morris/morris.css" rel="stylesheet" type="text/css" />
  39. <!-- jvectormap -->
  40. <link href="<?php echo BASE_URL; ?>static/plugins/jvectormap/jquery-jvectormap-1.2.2.css" rel="stylesheet" type="text/css" />
  41. <!-- bootstrap wysihtml5 - text editor -->
  42. <link href="<?php echo BASE_URL; ?>static/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css" rel="stylesheet" type="text/css" />
  43. <link href="<?php echo BASE_URL; ?>static/plugins/datatables/dataTables.bootstrap.css" rel="stylesheet" type="text/css" />
  44. <link href="<?php echo BASE_URL; ?>static/css/jquery.tag-editor.css" rel="stylesheet">
  45. <link href="<?php echo BASE_URL; ?>static/css/orangebox.css" rel="stylesheet">
  46. <link href="<?php echo BASE_URL; ?>static/css/jquery.switchButton.css" rel="stylesheet">
  47. <link href="<?php echo BASE_URL; ?>static/js/select2/select2.css" rel="stylesheet">
  48. <link href="<?php echo BASE_URL; ?>static/css/jquery.modal.css" rel="stylesheet" type="text/css" />
  49. <link href="<?php echo BASE_URL; ?>static/css/admin.css" rel="stylesheet" type="text/css" />
  50. <link href="<?php echo BASE_URL; ?>static/css/SQLTable.css" rel="stylesheet" type="text/css" />
  51. <link href="<?php echo BASE_URL; ?>static/css/cropper_style.css" rel="stylesheet" type="text/css" />
  52. <link href="<?php echo BASE_URL; ?>static/css/jquery.datetimepicker.css" rel="stylesheet" type="text/css" />
  53. <link href="<?php echo BASE_URL; ?>static/css/fileuploader_style.css" rel="stylesheet" type="text/css" />
  54. <link rel="stylesheet" href="<?php echo BASE_URL; ?>static/trumbowyg/dist/ui/trumbowyg.min.css">
  55. <link rel="stylesheet" href="<?php echo BASE_URL; ?>static/trumbowyg/dist/plugins/colors/ui/trumbowyg.colors.css">
  56. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  57. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  58. <!--[if lt IE 9]>
  59. <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  60. <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
  61. <![endif]-->
  62. <script>
  63. var active_page = '<?=$_SERVER['REQUEST_URI']?>';
  64. </script>
  65. </head>
  66. <body class="<?=admin_utils::getBaseColorScheme('skin-blue')?>">
  67. <div class="wrapper">
  68. <?php include 'admin_menu.php'; ?>