33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php
|
||
/**
|
||
* The template for displaying 404 pages (Not Found).
|
||
*
|
||
* @package thbusiness
|
||
*/
|
||
|
||
get_header(); ?>
|
||
<div class="col-xs-12 col-sm-12 col-md-12">
|
||
<div id="primary" class="content-area">
|
||
<main id="main" class="site-main" role="main">
|
||
|
||
<section class="error-404 not-found">
|
||
<header class="page-header">
|
||
<h1 class="page-title">Oops! That page can’t be found.</h1>
|
||
</header><!-- .page-header -->
|
||
|
||
<div class="page-content">
|
||
<p>It looks like nothing was found at this location. Try one of the links below or call us at<strong> 1-800-800-2537</strong>.</p>
|
||
<p><a href="<?php echo esc_url( home_url( '/' ) ); ?>">Medical Alert Home Page</a></p>
|
||
<p><a href="<?php bloginfo('url'); ?>/how-medical-alert-works">How a Medical Alert System Works</a></p>
|
||
<p><a href="<?php bloginfo('url'); ?>/order-medical-alert">Order a Medical Alert System</a></p>
|
||
|
||
<!--<?php get_search_form(); ?>-->
|
||
|
||
</div><!-- .page-content -->
|
||
</section><!-- .error-404 -->
|
||
|
||
</main><!-- #main -->
|
||
</div><!-- #primary -->
|
||
</div><!-- .col-xs-12 col-sm-12 col-md-12 -->
|
||
<?php get_footer(); ?>
|