1
|
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 |
// displays the page title |
|
17 |
thematic_page_title(); |
|
18 |
|
|
19 |
// create the navigation above the content |
|
20 |
thematic_navigation_above(); |
|
21 |
|
|
22 |
// action hook for placing content above the tag loop |
|
23 |
thematic_above_tagloop(); |
|
24 |
|
|
25 |
// action hook creating the tag loop |
|
26 |
thematic_tagloop(); |
|
27 |
|
|
28 |
// action hook for placing content below the tag loop |
|
29 |
thematic_below_tagloop(); |
|
30 |
|
|
31 |
// create the navigation below the content |
|
32 |
thematic_navigation_below(); |
|
33 |
|
|
34 |
?> |
|
35 |
|
|
36 |
</div><!-- #content --> |
|
37 |
</div><!-- #container --> |
|
38 |
|
|
39 |
<?php |
|
40 |
|
|
41 |
// action hook for placing content below #container |
|
42 |
thematic_belowcontainer(); |
|
43 |
|
|
44 |
// calling the standard sidebar |
|
45 |
thematic_sidebar(); |
|
46 |
|
|
47 |
// calling footer.php |
|
48 |
get_footer(); |
|
49 |
|
|
50 |
?> |