-
Notifications
You must be signed in to change notification settings - Fork 16
/
404.php
54 lines (28 loc) · 1.09 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
<?php get_header(); ?>
<div id="content">
<div id="inner-content" class="wrap cf">
<main id="main" class="m-all t-all d-all cf" role="main" itemscope itemprop="mainContentOfPage" itemtype="http://schema.org/Blog">
<article id="post-not-found" class="hentry cf">
<header class="article-header">
<?php get_template_part( 'templates/header', 'title'); ?>
</header>
<section class="entry-content">
<div class="hal">
<img src="<?php echo get_template_directory_uri(); ?>/library/images/hal.png" alt="HAL 9000">
<div class="circle"></div>
</div>
<div class="404-txt">
<h3><?php _e( 'I\'m sorry Dave, I\'m afraid I can\'t do that.', 'templatetheme' ); ?></h3>
<p>We couldn't find what you are looking for, please try searching.</p>
</div>
</section>
<section class="search">
<p><?php get_search_form(); ?></p>
</section>
<footer class="article-footer">
</footer>
</article>
</main>
</div>
</div>
<?php get_footer(); ?>