Your IP : 216.73.216.196


Current Path : /home/icmq6107/clients/FENAPFIBVTO/wp-content/themes/konstruk/
Upload File :
Current File : /home/icmq6107/clients/FENAPFIBVTO/wp-content/themes/konstruk/404.php

<?php
get_header('404');
global $konstruk_option;
$error_bg = !empty($konstruk_option['error_bg']['url']) ? 'style="background:url('.$konstruk_option['error_bg']['url'].')"': '';?>

<div class="page-error <?php if($konstruk_option){ echo esc_attr('not-found-bg');}?>" <?php echo wp_kses_post( $error_bg ); ?>>
    <div class="container">
        <div id="content">
            <div id="primary" class="content-area">
                <main id="main" class="site-main">    
                    <section class="error-404 not-found">    
                        <div class="page-content">
                            <h2>
                                <span>
                                    
                                    <?php
                                        if(!empty($konstruk_option['title_404'])){
                                            echo esc_html($konstruk_option['title_404']);
                                        }
                                        else{
                                            echo esc_html__( '404', 'konstruk' ); 
                                        }
                                    ?>
                                </span>                      
                                <?php

                                 if(!empty($konstruk_option['text_404'])){
                                      echo esc_html($konstruk_option['text_404']);
                                 }
                                 else{
                                  echo esc_html__( 'Opps! the page you requested was not found.', 'konstruk' ); }
                                 ?>
                            </h2>
                            <a class="readon" href="<?php echo esc_url( home_url('/') ); ?>">
                                <?php
                                 if(!empty($konstruk_option['back_home'])){
                                     echo esc_html($konstruk_option['back_home']);
                                 }
                                 else{
                                     esc_html_e('Or back to homepage', 'konstruk'); 
                                  }
                                ?>
                            </a>
                        </div><!-- .page-content -->
                    </section><!-- .error-404 -->    
                </main><!-- #main -->
            </div><!-- #primary -->
        </div>
    </div>   
</div> <!-- .page-error -->
<?php
get_footer('404');