web/wp-content/themes/thematic/single.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
            the_post();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    17
            
0d28b7c10758 First commit
ymh
parents:
diff changeset
    18
            // create the navigation above the content
0d28b7c10758 First commit
ymh
parents:
diff changeset
    19
			thematic_navigation_above();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    20
0d28b7c10758 First commit
ymh
parents:
diff changeset
    21
            // calling the widget area 'single-top'
0d28b7c10758 First commit
ymh
parents:
diff changeset
    22
            get_sidebar('single-top');
0d28b7c10758 First commit
ymh
parents:
diff changeset
    23
0d28b7c10758 First commit
ymh
parents:
diff changeset
    24
            // action hook creating the single post
0d28b7c10758 First commit
ymh
parents:
diff changeset
    25
            thematic_singlepost();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    26
			
0d28b7c10758 First commit
ymh
parents:
diff changeset
    27
            // calling the widget area 'single-insert'
0d28b7c10758 First commit
ymh
parents:
diff changeset
    28
            get_sidebar('single-insert');
0d28b7c10758 First commit
ymh
parents:
diff changeset
    29
0d28b7c10758 First commit
ymh
parents:
diff changeset
    30
            // create the navigation below the content
0d28b7c10758 First commit
ymh
parents:
diff changeset
    31
			thematic_navigation_below();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    32
0d28b7c10758 First commit
ymh
parents:
diff changeset
    33
            // calling the comments template
0d28b7c10758 First commit
ymh
parents:
diff changeset
    34
            thematic_comments_template();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    35
0d28b7c10758 First commit
ymh
parents:
diff changeset
    36
            // calling the widget area 'single-bottom'
0d28b7c10758 First commit
ymh
parents:
diff changeset
    37
            get_sidebar('single-bottom');
0d28b7c10758 First commit
ymh
parents:
diff changeset
    38
            
0d28b7c10758 First commit
ymh
parents:
diff changeset
    39
            ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    40
0d28b7c10758 First commit
ymh
parents:
diff changeset
    41
		</div><!-- #content -->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    42
	</div><!-- #container -->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    43
0d28b7c10758 First commit
ymh
parents:
diff changeset
    44
<?php 
0d28b7c10758 First commit
ymh
parents:
diff changeset
    45
0d28b7c10758 First commit
ymh
parents:
diff changeset
    46
    // action hook for placing content below #container
0d28b7c10758 First commit
ymh
parents:
diff changeset
    47
    thematic_belowcontainer();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    48
0d28b7c10758 First commit
ymh
parents:
diff changeset
    49
    // calling the standard sidebar 
0d28b7c10758 First commit
ymh
parents:
diff changeset
    50
    thematic_sidebar();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    51
    
0d28b7c10758 First commit
ymh
parents:
diff changeset
    52
    // calling footer.php
0d28b7c10758 First commit
ymh
parents:
diff changeset
    53
    get_footer();
0d28b7c10758 First commit
ymh
parents:
diff changeset
    54
0d28b7c10758 First commit
ymh
parents:
diff changeset
    55
?>