-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
34 lines (26 loc) · 1.11 KB
/
404.php
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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
*/
get_header(); ?>
<div id="primary">
<div id="content" role="main">
<article id="post-0" class="content_padding">
<header class="entry-header">
<h1 class="entry-title">Oops 404!</h1>
</header>
<div class="entry-content">
<p><?php _e( 'We’re sorry, the requested URL was not found. Try searching for something else.', 'twentyeleven' ); ?></p>
<div id="404rip" style="position: relative; height:auto;">
<img src="<?php bloginfo('stylesheet_directory');?>/images/404rip.png" class="404Paper" style="width:100%; position:absolute; z-index:1"/>
<img src="<?php bloginfo('stylesheet_directory');?>/images/404animate.gif" class="404Paper" style="width:100%; position:absolute"/>
<img src="<?php bloginfo('stylesheet_directory');?>/images/404rip.png" class="404Paper" style="width:100%;"/>
</div>
<div style="clear:both"></div>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
</article><!-- #post-0 -->
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>