-
Notifications
You must be signed in to change notification settings - Fork 2
/
404.php
31 lines (24 loc) · 922 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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package Ephemeris
* @since Ephemeris 1.0
*/
get_header(); ?>
<div id="maincontentcontainer">
<div id="content" class="grid-container site-content" role="main">
<div class="grid-100">
<article id="post-0" class="post error404 no-results not-found">
<header class="entry-header">
<h1 class="entry-title"><i class="far fa-frown fa-lg"></i> <?php esc_html_e( 'Uh Oh! This is somewhat embarrassing!', 'ephemeris' ); ?></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.', 'ephemeris' ); ?></p>
<?php get_search_form(); ?>
</div><!-- /.entry-content -->
</article><!-- /#post -->
</div>
</div> <!-- /#content.grid-container.site-content -->
</div> <!-- /#maincontentcontainer -->
<?php get_footer(); ?>