-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.php
29 lines (19 loc) · 884 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 get_header(); ?>
<?php get_template_part( 'parts/header', 'banner' ); ?>
<div id="content">
<div id="inner-content" class="container">
<div class="row justify-content-md-center">
<main id="main" class="col-lg-8 col-md-10 col-sm-12" role="main">
<article id="content-not-found">
<section class="entry-content">
<p><?php _e( 'The page you were looking for was not found. Try to find what you are looking for using the navigation above or the search form below!', 'ecclesio' ); ?></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><!-- .row -->
</div> <!-- end #inner-content -->
</div> <!-- end #content -->
<?php get_footer(); ?>