Guest User

Untitled

a guest
May 21st, 2014
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.08 KB | None | 0 0
  1. <?php
  2. global $avia_config;
  3.  
  4.     /*
  5.      * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
  6.      */
  7.      get_header();
  8.  
  9.  
  10.      echo avia_title(array('title' => __('Error 404 - page not found', 'avia_framework')));
  11.    
  12.     ?>
  13.  
  14.  
  15.         <div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
  16.            
  17.             <?php
  18.                 do_action('avia_404_extra'); // allows user to hook into 404 page fr extra functionallity. eg: send mail that page is missing, output additional information
  19.             ?>
  20.            
  21.             <div class='container'>
  22.  
  23.                 <main class='template-page twelve units' <?php avia_markup_helper(array('context' => 'content'));?>>
  24.  
  25.  
  26.                     <div class="entry entry-content-wrapper clearfix" id='search-fail'>
  27.                     <?php
  28.  
  29.                     get_template_part('includes/error404');
  30.  
  31.                     ?>
  32.                     </div>
  33.  
  34.                 <!--end content-->
  35.                 </main>
  36.  
  37.  
  38.             </div><!--end container-->
  39.  
  40.         </div><!-- close default .container_wrap element -->
  41.  
  42.  
  43.  
  44.  
  45. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment