-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
59 lines (34 loc) · 1.9 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php get_header(); ?>
<div id="inner-content" class="container clearfix">
<?php get_template_part('heading','fixed'); ?>
<div id="main" class="col-md-9 first" role="main">
<div id="content">
<article id="post-not-found" class="hentry post clearfix">
<header class="article-header">
<h1><?php _e( "Oh Crumbs! Total 404!", 'bonestheme' ); ?></h1>
</header>
<section class="entry-content">
<img src="<?php echo get_template_directory_uri(); ?>/library/images/404-error.png"
alt="404 Image"/>
<p>
<?php _e( "Looks like something went horribly wrong somewhere in the internet.", 'bonestheme' ); ?>
<?php _e( "As a result the page you requested isn't available.", 'bonestheme' ); ?>
<?php _e( "Or maybe it doesn't exist.", 'bonestheme' ); ?>
<?php _e( "Or maybe it never existed.", 'bonestheme' ); ?>
<?php _e( "Maybe this page is a figment of your imagination.", 'bonestheme' ); ?>
<?php _e( "Maybe you are a figment of your own imagination.", 'bonestheme' ); ?>
<?php _e( "Did we just blow your mind?", 'bonestheme' ); ?>
</p>
</section>
<section class="search">
<?php _e( "Search in the top search bar for the thing you are looking for or start all over from:", 'bonestheme' ); ?>
</section>
<footer class="article-footer">
<a href="<?php bloginfo('url') ?>" class="btn btn-success">Here <i class="fa fa-smile-o"></i></a>
</footer>
</article>
</div>
</div>
<?php get_sidebar('Sidebar 1'); ?>
</div>
<?php get_footer(); ?>