forked from maddisondesigns/Quark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
29 lines (22 loc) · 852 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package Quark
* @since Quark 1.0
*/
get_header(); ?>
<div id="primary" class="site-content row" role="main">
<div class="col grid_12_of_12">
<article id="post-0" class="post error404 no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><i class="fa fa-frown-o fa-lg"></i> <?php esc_html_e( 'Uh Oh! This is somewhat embarrassing!', 'quark' ); ?></h1>
</header>
<div class="entry-content">
<p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'quark' ); ?></p>
<?php get_search_form(); ?>
</div><!-- /.entry-content -->
</article><!-- /#post -->
</div> <!-- /.col.grid_12_of_12 -->
</div> <!-- /#primary.site-content.row -->
<?php get_footer(); ?>