web/wp-content/themes/thematic/index.php
author ymh <ymh.work@gmail.com>
Mon, 22 Mar 2010 16:36:28 +0100
changeset 5 ac511f1ccc8e
parent 1 0d28b7c10758
permissions -rw-r--r--
add hgignore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
0d28b7c10758 First commit
ymh
parents:
diff changeset
     1
<?php
0d28b7c10758 First commit
ymh
parents:
diff changeset
     2
0d28b7c10758 First commit
ymh
parents:
diff changeset
     3
    // calling the header.php
0d28b7c10758 First commit
ymh
parents:
diff changeset
     4
    get_header();
0d28b7c10758 First commit
ymh
parents:
diff changeset
     5
0d28b7c10758 First commit
ymh
parents:
diff changeset
     6
    // action hook for placing content above #container
0d28b7c10758 First commit
ymh
parents:
diff changeset
     7
    thematic_abovecontainer();
0d28b7c10758 First commit
ymh
parents:
diff changeset
     8
0d28b7c10758 First commit
ymh
parents:
diff changeset
     9
?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    10
0d28b7c10758 First commit
ymh
parents:
diff changeset
    11
	<div id="container">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    12
		<div id="content">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    13
0d28b7c10758 First commit
ymh
parents:
diff changeset
    14
			<?php 
0d28b7c10758 First commit
ymh
parents:
diff changeset
    15
            
0d28b7c10758 First commit
ymh
parents:
diff changeset
    16
            // create the navigation above the content
0d28b7c10758 First commit
ymh
parents:
diff changeset
    17
            thematic_navigation_above();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    18
			
0d28b7c10758 First commit
ymh
parents:
diff changeset
    19
            // calling the widget area 'index-top'
0d28b7c10758 First commit
ymh
parents:
diff changeset
    20
            get_sidebar('index-top');
0d28b7c10758 First commit
ymh
parents:
diff changeset
    21
0d28b7c10758 First commit
ymh
parents:
diff changeset
    22
            // action hook for placing content above the index loop
0d28b7c10758 First commit
ymh
parents:
diff changeset
    23
            thematic_above_indexloop();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    24
0d28b7c10758 First commit
ymh
parents:
diff changeset
    25
            // action hook creating the index loop
0d28b7c10758 First commit
ymh
parents:
diff changeset
    26
            thematic_indexloop();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    27
0d28b7c10758 First commit
ymh
parents:
diff changeset
    28
            // action hook for placing content below the index loop
0d28b7c10758 First commit
ymh
parents:
diff changeset
    29
            thematic_below_indexloop();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    30
0d28b7c10758 First commit
ymh
parents:
diff changeset
    31
            // calling the widget area 'index-bottom'
0d28b7c10758 First commit
ymh
parents:
diff changeset
    32
            get_sidebar('index-bottom');
0d28b7c10758 First commit
ymh
parents:
diff changeset
    33
0d28b7c10758 First commit
ymh
parents:
diff changeset
    34
            // create the navigation below the content
0d28b7c10758 First commit
ymh
parents:
diff changeset
    35
            thematic_navigation_below();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    36
            
0d28b7c10758 First commit
ymh
parents:
diff changeset
    37
            ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    38
0d28b7c10758 First commit
ymh
parents:
diff changeset
    39
		</div><!-- #content -->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    40
	</div><!-- #container -->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    41
0d28b7c10758 First commit
ymh
parents:
diff changeset
    42
<?php 
0d28b7c10758 First commit
ymh
parents:
diff changeset
    43
0d28b7c10758 First commit
ymh
parents:
diff changeset
    44
    // action hook for placing content below #container
0d28b7c10758 First commit
ymh
parents:
diff changeset
    45
    thematic_belowcontainer();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    46
0d28b7c10758 First commit
ymh
parents:
diff changeset
    47
    // calling the standard sidebar 
0d28b7c10758 First commit
ymh
parents:
diff changeset
    48
    thematic_sidebar();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    49
    
0d28b7c10758 First commit
ymh
parents:
diff changeset
    50
    // calling footer.php
0d28b7c10758 First commit
ymh
parents:
diff changeset
    51
    get_footer();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    52
0d28b7c10758 First commit
ymh
parents:
diff changeset
    53
?>