-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
56 lines (50 loc) · 1.88 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
53
54
55
56
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package YIKES Starter
*/
get_header();
?>
<div class="archive-subheader">
<div class="jumbotron">
<div class="container">
<section class="archive-header">
<div class="row">
<div class="col-10"><h1 class="entry-title"><?php esc_attr_e( 'Oops! This isn\'t the page you thought it was.', 'lwtv-underscores' ); ?></h1></div>
<div class="col-2 icon plain"><span role="img" aria-label="404" title="404 - Page Not Found" class="taxonomy-svg 404">
<?php
// phpcs:ignore WordPress.Security.EscapeOutput -- We're outputting SVGs
echo lwtv_plugin()->get_symbolicon( svg: 'easter-egg-alt.svg', fontawesome: 'fa-gift', max_size: '50' );
?>
</span></div>
</div>
</section><!-- .archive-header -->
</div><!-- .container -->
</div><!-- /.jumbotron -->
</div>
<div id="main" tabindex="-1" class="site-main" role="main">
<div class="container">
<div class="row">
<div class="col">
<div id="primary" class="content-area">
<div id="content" class="site-content clearfix">
<article id="post-0" class="post not-found">
<div class="entry-content clearfix">
<p><img src="<?php echo esc_url( get_template_directory_uri() ); ?>/images/rose.gif" alt="Rose revealing herself by peeling off a face mask in Jane the Virgin" class="alignleft"/></p>
<p><?php esc_attr_e( 'Sorry, there is no page with this address. Please try again or use the search below.', 'lwtv-underscores' ); ?></p>
<div class="row g-0">
<div class="col-sm-8">
<?php get_search_form(); ?>
</div>
</div>
</div><!-- .entry-content -->
</article><!-- #post-0 .post .not-found -->
</div><!-- #content -->
</div><!-- #primary -->
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .container -->
</div><!-- #main -->
<?php
get_footer();