balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

404.php (1433B)


      1 <?php
      2 /**
      3  * The template for displaying 404 pages (not found)
      4  *
      5  * @link https://codex.wordpress.org/Creating_an_Error_404_Page
      6  *
      7  * @package appside
      8  */
      9 
     10 get_header();
     11 $get_404_options_value = Appside_Group_Fields_Value::get_404_options_value();
     12 ?>
     13 
     14     <div id="primary" class="content-area error_page_content_area padding-top-110 padding-bottom-110">
     15         <main id="main" class="site-main">
     16             <div class="container">
     17                 <div class="row justify-content-center">
     18                     <div class="col-lg-8">
     19                         <div class="error-404 not-found">
     20                             <h2 class="title"><?php echo esc_html($get_404_options_value['title']);?></h2>
     21                             <h4 class="subtitle"><?php echo esc_html($get_404_options_value['subtitle']);?></h4>
     22                             <p class="paragraph"><?php echo esc_html($get_404_options_value['paragraph']);?></p>
     23 							<?php
     24 							get_search_form();
     25 							?>
     26                             <div class="btn-wrapper desktop-center margin-top-30">
     27                                 <a class="boxed-btn" href="<?php echo esc_url(home_url('/'));?>"><?php echo esc_html($get_404_options_value['btn_text']);?></a>
     28                             </div>
     29                         </div>
     30                     </div>
     31                 </div>
     32             </div>
     33         </main><!-- #main -->
     34     </div><!-- #primary -->
     35 
     36 <?php
     37 get_footer();