web/wp-content/themes/thematic/404.php
changeset 1 0d28b7c10758
equal deleted inserted replaced
0:0d9a58d2c515 1:0d28b7c10758
       
     1 <?php
       
     2 
       
     3     @header("HTTP/1.1 404 Not found", true, 404);
       
     4 
       
     5     // calling the header.php
       
     6     get_header();
       
     7 
       
     8     // action hook for placing content above #container
       
     9     thematic_abovecontainer();
       
    10 
       
    11 ?>
       
    12 
       
    13 	<div id="container">
       
    14 		<div id="content">
       
    15 
       
    16 			<div id="post-0" class="post error404">
       
    17 			
       
    18 			<?php
       
    19 
       
    20                 // action hook for the 404 content
       
    21                 thematic_404()
       
    22 
       
    23             ?>
       
    24 			
       
    25 			</div><!-- .post -->
       
    26 
       
    27 		</div><!-- #content -->
       
    28 	</div><!-- #container -->
       
    29     
       
    30 <?php
       
    31 
       
    32     // action hook for placing content below #container
       
    33     thematic_belowcontainer();
       
    34 
       
    35     // calling the standard sidebar 
       
    36     thematic_sidebar();
       
    37 
       
    38     // calling footer.php
       
    39     get_footer();
       
    40 
       
    41 ?>