Subversion Repositories SmartDukaan

Rev

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

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