Subversion Repositories SmartDukaan

Rev

Rev 11733 | Rev 11735 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
10582 lgm 1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<title>404 Page Not Found</title>
11734 anikendra 5
<script>
6
      var _gaq = _gaq || [];
7
      _gaq.push(['_setAccount', '<?php echo $this->config->item('ga_id');?>']);
8
      _gaq.push(['_setDomainName', '<?php echo $this->config->item('ga_domain');?>']);
9
      _gaq.push(['_trackPageview']);
10
 
11
      (function() {
12
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
13
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
14
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
15
      })();
16
</script>
10582 lgm 17
<style type="text/css">
18
 
19
::selection{ background-color: #E13300; color: white; }
20
::moz-selection{ background-color: #E13300; color: white; }
21
::webkit-selection{ background-color: #E13300; color: white; }
22
 
23
body {
24
	background-color: #fff;
25
	margin: 40px;
26
	font: 13px/20px normal Helvetica, Arial, sans-serif;
27
	color: #4F5155;
28
}
29
 
30
a {
31
	color: #003399;
32
	background-color: transparent;
33
	font-weight: normal;
34
}
35
 
36
h1 {
37
	color: #444;
38
	background-color: transparent;
39
	border-bottom: 1px solid #D0D0D0;
40
	font-size: 19px;
41
	font-weight: normal;
42
	margin: 0 0 14px 0;
43
	padding: 14px 15px 10px 15px;
44
}
45
 
46
code {
47
	font-family: Consolas, Monaco, Courier New, Courier, monospace;
48
	font-size: 12px;
49
	background-color: #f9f9f9;
50
	border: 1px solid #D0D0D0;
51
	color: #002166;
52
	display: block;
53
	margin: 14px 0 14px 0;
54
	padding: 12px 10px 12px 10px;
55
}
56
 
57
#container {
58
	margin: 10px;
59
	border: 1px solid #D0D0D0;
60
	-webkit-box-shadow: 0 0 8px #D0D0D0;
61
}
62
 
63
p {
64
	margin: 12px 15px 12px 15px;
65
}
66
</style>
67
</head>
68
<body>
69
	<div id="container">
70
		<h1><?php echo $heading; ?></h1>
71
		<?php echo $message; ?>
72
	</div>
11733 anikendra 73
	<script>
74
		_gaq.push(['_trackEvent', 'ErrorPage', 'Default 404 Page Loaded']);
75
	</script>
10582 lgm 76
</body>
11733 anikendra 77
</html>