D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
public_html
/
a3legalservices.site
/
wp-content
/
themes
/
aeen
/
Filename :
404.php
back
Copy
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\aeen; use radiustheme\aeen\inc\RDTheme; use radiustheme\aeen\inc\Helper; get_header(); $error_img_url = RDTheme::$options['error_img']; if ( $error_img_url ) { $error_img = wp_get_attachment_url( $error_img_url ); }else{ $error_img = Helper::get_img('404.png'); } $error_text1 = RDTheme::$options['error_text1']; $error_text2 = RDTheme::$options['error_text2']; $error_content = RDTheme::$options['error_content']; $error_buttontext = RDTheme::$options['error_buttontext']; ?> <section class="error-wrap-layout1"> <div class="container"> <div class="row align-items-center"> <div class="col-lg-5"> <div class="item-content"> <h1><?php echo esc_html( $error_text1 ); ?></h1> <h2><?php echo esc_html( $error_text2 ); ?></h2> <p><?php echo esc_html( $error_content ); ?></p> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="btn-fill"><?php echo esc_html( $error_buttontext );?></a> </div> </div> <div class="col-lg-7"> <?php if( !empty( $error_img ) ) : ?> <div class="item-figure"> <img src="<?php echo esc_url( $error_img ); ?>" alt="<?php esc_attr_e( '404', 'aeen' ); ?>" class="img-fluid"> </div> <?php endif; ?> </div> </div> </div> </section> <?php get_footer(); ?>