19 lines
703 B
PHP
19 lines
703 B
PHP
<?php get_header(); get_template_part('template-parts/breadcrumb'); ?>
|
|
<div class="main">
|
|
<div class="container">
|
|
<div class="main-content">
|
|
<?php
|
|
_e('<h2>404 NOT FOUND</h2>', 'thanhgiang');
|
|
_e('<p>The article you were looking for was not found, but maybe try looking again!</p>', 'thanhgiang');
|
|
|
|
get_search_form();
|
|
?>
|
|
</div>
|
|
<aside class="sidebar">
|
|
<?php get_sidebar(); ?>
|
|
</aside>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|