HEX
Server: Apache
System: Linux flamboyant-gauss.194-164-62-186.plesk.page 6.8.0-55-generic #57-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 12 23:42:21 UTC 2025 x86_64
User: gamesamphora (10001)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/amphoragames.com/httpdocs/wp-content/themes/ibuki/404.php
<?php get_header(); ?>
<?php
$options_ibuki = get_option('ibuki');

$error_image = null;
$error_class = null;
if( !empty($options_ibuki['error-custom-settings']) && $options_ibuki['error-custom-settings'] == 1) {
    $error_class = 'imagize';
    $error_image = ' style="background-image: url('.$options_ibuki['error-custom-image']['url'].'); background-size: cover; background-repeat: no-repeat; background-position: center center;"';
} else {
    $error_class = 'titlize';
    $error_image = '';
}
?>
<div id="content">
    <section id="error">        
        <div class="full-container <?php echo $error_class; ?>"<?php echo $error_image; ?>>
<?php if( !empty($options_ibuki['error-custom-settings']) && $options_ibuki['error-custom-settings'] == 1) { echo '<span class="overlay-bg"></span>'; } ?>
            <div class="box-overlay-error <?php echo $error_class; ?>">
                <div class="content-title centerize">
                    <h2 class="error-title"><?php echo __('404', AZ_THEME_NAME); ?></h2>
                    <span class="line"></span>
                    <h3 class="error-caption"><a href="<?php echo home_url(); ?>" class="back-home" title="<?php bloginfo('name'); ?>"><?php echo __('Back to Home', AZ_THEME_NAME); ?></a></h3>
                </div>
            </div>
        </div>
    </section>
</div>
<?php get_footer(); ?>