HEX
Server: LiteSpeed
System: Linux s3604.bom1.stableserver.net 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User: dmstechonline (1480)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/dmstechonline/www/wp-content/themes/xolio/404.php
<?php

/**
 * The template for displaying 404 pages (not found)
 *
 * @link https://codex.wordpress.org/Creating_an_Error_404_Page
 *
 * @package xolio
 */

get_header();
?>


<?php
    $xolio_error_text = get_theme_mod('xolio_error_text', __('404', 'xolio'));
    $xolio_error_title = get_theme_mod('xolio_error_title', __('Sorry, the page you are looking for could not be found', 'xolio'));
    $xolio_error_link_text = get_theme_mod('xolio_error_link_text', __('Back to home', 'xolio'));
?>

<!-- error-area -->
<section class="error-area">
    <div class="container">
        <div class="row justify-content-center">
            <div class="col-xl-7 col-lg-9 col-md-10">
                <div class="error-content text-center">
                    <h2 class="error-text"><?php print esc_html($xolio_error_text) ?></h2>
                    <h5 class="content"><?php print esc_html($xolio_error_title); ?></h5>
                    <a href="<?php print esc_url(home_url('/')); ?>" class="btn">
                        <?php print esc_html($xolio_error_link_text); ?>
                        <span></span>
                    </a>
                </div>
            </div>
        </div>
    </div>
</section>
<!-- error-area-end -->

<?php
get_footer();