You've already forked dementiewijs
30 lines
764 B
PHP
30 lines
764 B
PHP
<?php
|
|
get_header();
|
|
get_template_part('sections/specia','breadcrumb'); ?>
|
|
|
|
<section class="page-wrapper error-page">
|
|
|
|
<div class="container text-center">
|
|
|
|
<div class="row padding-top-30 padding-bottom-30">
|
|
<div class="col-md-12">
|
|
<h1><?php _e('404','specia');404 ?></h1>
|
|
<h2><?php esc_html_e( 'Oops! That page can’t be found.', 'specia' ); ?></h2>
|
|
<p><?php esc_html_e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'specia' ); ?></p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row padding-top-10 padding-bottom-60">
|
|
<div class="col-md-6 col-md-offset-3">
|
|
<?php
|
|
get_search_form();
|
|
?>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<?php get_footer();
|