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