-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
404.php
52 lines (27 loc) · 1.05 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
<?php get_header(); ?>
<div id="content">
<div id="inner-content" class="wrap">
<main id="main" class="main" role="main" itemscope itemprop="mainContentOfPage" itemtype="https://schema.org/Blog">
<article id="post-not-found" class="hentry">
<header class="article-header">
<?php get_template_part( 'templates/header', 'title'); ?>
</header>
<section class="entry-content">
<div class="404-txt">
<h3><?php _e( 'I\'m sorry Dave, I\'m afraid I can\'t do that.', 'platetheme' ); ?></h3>
<p><?php _e( 'We couldn\'t find what you are looking for, please try searching.', 'platetheme' ); ?></p>
</div>
</section>
<section class="search-outer">
<div class="search-form-outer">
<?php get_search_form(); ?>
</div>
</section>
<footer class="article-footer">
</footer>
</article>
</main>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>