blob: c19bedfcd293e4682e65bd59b7d5ce5772513ca8 [file] [log] [blame]
Andrey Andreeve734b382012-03-26 13:42:36 +03001<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
Derek Jonesf4a4bd82011-10-20 12:18:42 -05002/**
3 * CodeIgniter
4 *
Phil Sturgeon07c1ac82012-03-09 17:03:37 +00005 * An open source application development framework for PHP 5.2.4 or newer
Derek Jonesf4a4bd82011-10-20 12:18:42 -05006 *
7 * NOTICE OF LICENSE
Andrey Andreeve734b382012-03-26 13:42:36 +03008 *
Derek Jonesf4a4bd82011-10-20 12:18:42 -05009 * Licensed under the Academic Free License version 3.0
Andrey Andreeve734b382012-03-26 13:42:36 +030010 *
Derek Jones61df9062011-10-21 09:55:40 -050011 * This source file is subject to the Academic Free License (AFL 3.0) that is
Derek Jonesf4a4bd82011-10-20 12:18:42 -050012 * bundled with this package in the files license_afl.txt / license_afl.rst.
13 * It is also available through the world wide web at this URL:
14 * http://opensource.org/licenses/AFL-3.0
15 * If you did not receive a copy of the license and are unable to obtain it
16 * through the world wide web, please send an email to
17 * licensing@ellislab.com so we can send you a copy immediately.
18 *
19 * @package CodeIgniter
20 * @author EllisLab Dev Team
Greg Aker0defe5d2012-01-01 18:46:41 -060021 * @copyright Copyright (c) 2008 - 2012, EllisLab, Inc. (http://ellislab.com/)
Derek Jonesf4a4bd82011-10-20 12:18:42 -050022 * @license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0)
23 * @link http://codeigniter.com
24 * @since Version 1.0
25 * @filesource
26 */
Andrey Andreeve734b382012-03-26 13:42:36 +030027?><!DOCTYPE html>
Greg Aker1cdb0fd2011-04-20 11:11:47 -050028<html lang="en">
Derek Allard2067d1a2008-11-13 22:59:24 +000029<head>
kenjis2d297cb2011-10-04 12:00:55 +090030<meta charset="utf-8">
Derek Allard2067d1a2008-11-13 22:59:24 +000031<title>404 Page Not Found</title>
32<style type="text/css">
33
Greg Aker1cdb0fd2011-04-20 11:11:47 -050034::selection{ background-color: #E13300; color: white; }
35::moz-selection{ background-color: #E13300; color: white; }
36::webkit-selection{ background-color: #E13300; color: white; }
37
Derek Allard2067d1a2008-11-13 22:59:24 +000038body {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050039 background-color: #fff;
40 margin: 40px;
41 font: 13px/20px normal Helvetica, Arial, sans-serif;
42 color: #4F5155;
Derek Allard2067d1a2008-11-13 22:59:24 +000043}
44
Greg Aker1cdb0fd2011-04-20 11:11:47 -050045a {
46 color: #003399;
47 background-color: transparent;
48 font-weight: normal;
Derek Allard2067d1a2008-11-13 22:59:24 +000049}
50
51h1 {
Greg Aker1cdb0fd2011-04-20 11:11:47 -050052 color: #444;
53 background-color: transparent;
54 border-bottom: 1px solid #D0D0D0;
55 font-size: 19px;
56 font-weight: normal;
57 margin: 0 0 14px 0;
58 padding: 14px 15px 10px 15px;
59}
60
61code {
62 font-family: Consolas, Monaco, Courier New, Courier, monospace;
63 font-size: 12px;
64 background-color: #f9f9f9;
65 border: 1px solid #D0D0D0;
66 color: #002166;
67 display: block;
68 margin: 14px 0 14px 0;
69 padding: 12px 10px 12px 10px;
70}
71
72#container {
73 margin: 10px;
74 border: 1px solid #D0D0D0;
dixy43ef7062012-05-05 18:26:54 +020075 box-shadow: 0 0 8px #D0D0D0;
Greg Aker1cdb0fd2011-04-20 11:11:47 -050076}
77
78p {
79 margin: 12px 15px 12px 15px;
Derek Allard2067d1a2008-11-13 22:59:24 +000080}
81</style>
82</head>
83<body>
Greg Aker1cdb0fd2011-04-20 11:11:47 -050084 <div id="container">
Derek Allard2067d1a2008-11-13 22:59:24 +000085 <h1><?php echo $heading; ?></h1>
86 <?php echo $message; ?>
87 </div>
88</body>
adminb0dd10f2006-08-25 17:25:49 +000089</html>