aboutsummaryrefslogtreecommitdiffstats
path: root/htdocs/application/errors/error_404.php
blob: 8beb033c122a72febca0559323fc59cf57827939 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
$CI =& get_instance();
header("HTTP/1.1 404 Not Found");
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

	<head>
		<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
		<title>Stikked</title>
				<link rel="stylesheet" href="<?php echo base_url(); ?>themes/default/css/reset.css" type="text/css" />
		<link rel="stylesheet" href="<?php echo base_url(); ?>themes/default/css/fonts.css" type="text/css" />
		<link rel="stylesheet" href="<?php echo base_url(); ?>themes/default/css/main.css" type="text/css" media="screen" title="main" charset="utf-8" />
	</head>

	<body>
		<div id="container">
			<div class="container">
				<div class="header">
					<h1><a href="<?php echo base_url(); ?>" class="title"><?php echo $CI->config->item('site_name'); ?></a></h1>
				</div>
				
				<div class="page">
					<div class="content">
						<div class="container">
							<h1><?php echo $heading; ?></h1>
							<div class="about">
								<?php echo $message; ?>
								<p>Woops! We can't find that page, <a href="<?php echo base_url(); ?>">Go Home</a></p>
							</div>
						</div>
					</div>
				</div>
			
			</div>
		</div>
	</body>
</html>

© 2014-2024 Faster IT GmbH | imprint | privacy policy