404.html 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Bootstrap Admin</title>
  6. <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <meta name="description" content="">
  9. <meta name="author" content="">
  10. <link rel="stylesheet" type="text/css" href="lib/bootstrap/css/bootstrap.css">
  11. <link rel="stylesheet" type="text/css" href="stylesheets/theme.css">
  12. <link rel="stylesheet" href="lib/font-awesome/css/font-awesome.css">
  13. <script src="lib/jquery-1.7.2.min.js" type="text/javascript"></script>
  14. <!-- Demo page code -->
  15. <style type="text/css">
  16. #line-chart {
  17. height:300px;
  18. width:800px;
  19. margin: 0px auto;
  20. margin-top: 1em;
  21. }
  22. .brand { font-family: georgia, serif; }
  23. .brand .first {
  24. color: #ccc;
  25. font-style: italic;
  26. }
  27. .brand .second {
  28. color: #fff;
  29. font-weight: bold;
  30. }
  31. </style>
  32. <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
  33. <!--[if lt IE 9]>
  34. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  35. <![endif]-->
  36. <!-- Le fav and touch icons -->
  37. <link rel="shortcut icon" href="../assets/ico/favicon.ico">
  38. <link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
  39. <link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
  40. <link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
  41. <link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">
  42. </head>
  43. <!--[if lt IE 7 ]> <body class="ie ie6"> <![endif]-->
  44. <!--[if IE 7 ]> <body class="ie ie7 http-error"> <![endif]-->
  45. <!--[if IE 8 ]> <body class="ie ie8 http-error"> <![endif]-->
  46. <!--[if IE 9 ]> <body class="ie ie9 http-error"> <![endif]-->
  47. <!--[if (gt IE 9)|!(IE)]><!-->
  48. <body class="http-error">
  49. <!--<![endif]-->
  50. <div class="row-fluid">
  51. <div class="http-error">
  52. <h1>Oops!</h1>
  53. <p class="info">This page doesn't exist.</p>
  54. <p><i class="icon-home"></i></p>
  55. <p><a href="index.html">Back to the home page</a></p>
  56. </div>
  57. </div>
  58. <script src="lib/bootstrap/js/bootstrap.js"></script>
  59. <script type="text/javascript">
  60. $("[rel=tooltip]").tooltip();
  61. $(function() {
  62. $('.demo-cancel-click').click(function(){return false;});
  63. });
  64. </script>
  65. </body>
  66. </html>