forked from JeremyEnglert/JointsWP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
38 lines (25 loc) · 1018 Bytes
/
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
<?php
/**
* The template for displaying 404 (page not found) pages.
*
* For more info: https://codex.wordpress.org/Creating_an_Error_404_Page
*/
get_header(); ?>
<div class="content">
<div class="inner-content grid-x grid-margin-x grid-padding-x">
<main class="main small-12 medium-8 large-8 cell" role="main">
<article class="content-not-found">
<header class="article-header">
<h1><?php _e( 'Epic 404 - Article Not Found', 'jointswp' ); ?></h1>
</header> <!-- end article header -->
<section class="entry-content">
<p><?php _e( 'The article you were looking for was not found, but maybe try looking again!', 'jointswp' ); ?></p>
</section> <!-- end article section -->
<section class="search">
<p><?php get_search_form(); ?></p>
</section> <!-- end search section -->
</article> <!-- end article -->
</main> <!-- end #main -->
</div> <!-- end #inner-content -->
</div> <!-- end #content -->
<?php get_footer(); ?>