web/wp-content/themes/thematic/archive.php
changeset 1 0d28b7c10758
equal deleted inserted replaced
0:0d9a58d2c515 1:0d28b7c10758
       
     1 <?php
       
     2 
       
     3     // calling the header.php
       
     4     get_header();
       
     5 
       
     6     // action hook for placing content above #container
       
     7     thematic_abovecontainer();
       
     8 
       
     9 ?>
       
    10 
       
    11 	<div id="container">
       
    12 		<div id="content">
       
    13 
       
    14             <?php 
       
    15 
       
    16             the_post();
       
    17 
       
    18             // displays the page title
       
    19             thematic_page_title();
       
    20 
       
    21             rewind_posts();
       
    22 
       
    23             // create the navigation above the content
       
    24             thematic_navigation_above();
       
    25 
       
    26             // action hook creating the archive loop
       
    27             thematic_archiveloop();
       
    28 
       
    29             // create the navigation below the content
       
    30             thematic_navigation_below();
       
    31 
       
    32             ?>
       
    33 
       
    34 		</div><!-- #content .hfeed -->
       
    35 	</div><!-- #container -->
       
    36 
       
    37 <?php 
       
    38 
       
    39     // action hook for placing content below #container
       
    40     thematic_belowcontainer();
       
    41 
       
    42     // calling the standard sidebar 
       
    43     thematic_sidebar();
       
    44     
       
    45     // calling footer.php
       
    46     get_footer();
       
    47 
       
    48 ?>