-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
30 lines (26 loc) · 1.1 KB
/
Copy path404.php
File metadata and controls
30 lines (26 loc) · 1.1 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
<?php
get_header( );
?>
<div class="container-fluid">
<div class="row-fluid">
<div class="span8">
<div class="span4">
<br /><br /><br />
<center><p style="font-size: 800%;"><b>404</b></p></center>
<br /><br /><br />
</div>
<div class="span8">
<h2><?php _e('Page Not Found','cp')?></h2>
<p><?php _e('The page you are looking for has been moved or does not exist. Please try another url or use our search to find what you are looking for.','cp')?></p>
<div class="input-append">
<form method="get" id="searchform" class="searchform" action="<?php bloginfo('url'); ?>/">
<input class="span9" placeholder="Search" id="appendedInputButton" type="text" name="s" id="s" onclick="this.value=''" value="<?php _e('Search...','cp'); ?>" onfocus="if (this.value == '<?php _e('Search...','cp'); ?>') {this.value = '';}" onblur="if (this.value == '') {this.value = '<?php _e('Search...','cp'); ?>';}">
<button class="btn" type="submit" value="Go!">Go!</button>
</form>
</div>
</div>
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>