forked from ShiponKarmakar/articlepress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
36 lines (31 loc) · 804 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
<?php
/**
* The template for displaying archive pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package ArticlePress
*/
get_header();
?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<section class="blog-section">
<div class="container">
<div class="row">
<div class="col-md-8">
<header class="page-header">
<h1 class="page-title"><?php esc_html_e( 'Oops! 404 That page can’t be found.', 'articlepress' ); ?></h1>
</header><!-- .page-header -->
</div>
<div class="col-md-4">
<!-- Sidebar Register -->
<?php get_sidebar(); ?>
</div>
</div>
</div>
</section>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_footer();