Sid Gifari From Gifari Industries - BD Cyber Security Team
Home
/
home
/
airmobeuag
/
dooh
/
wp-content
/
themes
/
polo
/
✏️
Editing: 404.php
<?php /** * Template for displaying 404 page * */ ?> <?php $page_style = reactor_option('page_404_style','default'); $parallax_page_bg = reactor_option('page_404_parallax_image'); $page_404_title = polo_do_multilang_text(reactor_option('page_404_title')); $page_404_description = polo_do_multilang_text(reactor_option('page_404_description')); if ( 'parallax' === $page_style ) { $section_class = 'parallax text-light fullscreen background-overlay-dark'; if ( isset( $parallax_page_bg ) && ! empty( $parallax_page_bg ) ) { $parallax_bg_style = 'style="background:url(' . wp_get_attachment_url( $parallax_page_bg ) . ')"'; } } else { $section_class = 'm-t-80 p-b-150'; $parallax_bg_style = ''; } if ( isset( $page_404_title ) && ! empty( $page_404_title ) ) { $page_title = $page_404_title; } else { $page_title = ''; } if ( isset( $page_404_description ) && ! empty( $page_404_description ) ) { $page_description = $page_404_description; } else { $page_description = ''; } ?> <?php get_header(); ?> <?php polo_content_before(); ?> <!-- 404 PAGE --> <section class="<?php echo esc_attr( $section_class ); ?>" <?php polo_render($parallax_bg_style); ?>> <div class="container"> <?php if ( 'parallax' === $page_style ){ ?> <div class="container-fullscreen"> <div class="text-middle text-center text-light"> <?php } ?> <div class="row"> <div class="col-md-6"> <div class="page-error-404">404</div> </div><!--col-md-6--> <div class="col-md-6"> <div class="text-left"> <?php if ( isset( $page_title ) && ! empty( $page_title ) ) { ?> <h1 class="text-medium"><?php polo_render($page_title); ?></h1> <?php } ?> <?php if ( isset( $page_description ) && ! empty( $page_description ) ) { ?> <p class="lead"><?php polo_render($page_description); ?></p> <?php } ?> <div class="seperator m-t-20 m-b-20"></div> <div class="search-form"> <p><?php esc_html_e( 'Please try searching again', 'polo' ) ?></p> <?php $search_form = get_search_form( false ); $search_form = str_replace( 'input-group', 'input-group input-group-lg', $search_form ); $search_form = str_replace( 'input-group input-group-lg-btn', 'input-group-btn', $search_form ); polo_render( $search_form ); ?> </div> </div> </div><!--col-md-6--> </div><!--row--> <?php if ( 'parallax' === $page_style ){ ?> </div><!--text-middle text-center text-light--> </div><!--container-fullscreen--> <?php } ?> </div><!--container--> </section> <!-- END: 404 PAGE --> <?php polo_content_after(); ?> <?php get_footer(); ?>
💾 Save
❌ Cancel