forked from bigspring/monolith
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
41 lines (26 loc) · 1.23 KB
/
404.php
File metadata and controls
41 lines (26 loc) · 1.23 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
31
32
33
34
35
36
37
38
39
40
41
<?php // 404 page ?>
<?php // Default Page Template ?>
<? get_template_parts( array( 'parts/html-header', 'parts/header' ) ); ?>
<div class="main" role="document">
<div class="<?= CONTAINER_CLASSES; ?>">
<? get_template_part('parts/breadcrumb'); // load the breadcrumbs ?>
<div class="<?= ROW_CLASSES ?>">
<div class="span<?= FULLWIDTH_SIZE ?> content" role="main">
<header class="page-header 404-header">
<h1 class="page-title h1">404 error - page not found</h1>
</header>
<section class="entry-content">
<p class="entry-content">The page you're looking wasn't found. Try searching instead:</p>
</section>
<!-- search form -->
<section class="404-search-form">
<form id="searchform-404" class="blog-search form-search" method="get" action="<?php bloginfo('home') ?>">
<input id="s-404" name="s" class="text" type="text" value="<?php the_search_query() ?>" size="40" />
<button class="btn" type="submit">Search <? bloginfo('name') ?></button>
</form>
</section>
</div><!-- /main -->
</div><!-- /ROW_CLASSES -->
</div><!-- /CONTAINER_CLASSES -->
</div><!-- /main -->
<?php get_template_parts( array( 'parts/footer','parts/html-footer' ) ); ?>