-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
32 lines (32 loc) · 1.05 KB
/
404.php
File metadata and controls
32 lines (32 loc) · 1.05 KB
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
<?php
$page_instance = Page::get_instance();
$page_instance->add_header(array(
'page_title' => 'Page not found',
'page_keywords' => '',
'page_description' => 'Requested resource not found. Browse other pages on '. SITE_NAME,
'robots_value' => '',
'stylesheets' => array(),
'current_user' => UserModel::get_user_instance(UserModel::get_current_user_id()),
'open_graph_data' => array(
'url' => '',
'title' => 'Page not found',
'description' => 'Requested resource not found. Browse other pages on '. SITE_NAME,
'content-type' => 'website'
)));
$page_instance->add_nav();
?>
<div class="container" style="padding-bottom:30px;">
<div class="row">
<div class="col-md-12">
<center>
<p>
<span style="font-weight:400; font-size:150px; color:#900;">Oops!!!</span><br />
<span>The page you are looking for was not found</span>
</p>
<p><a href="<?php echo SITE_URL; ?>">Return to Home page</a></p>
</center>
</div>
</div>
</div>
<?php $page_instance->add_footer(); ?>
<?php $page_instance->close_page(); ?>