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