-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.php
57 lines (39 loc) · 1.24 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
// calling the header.php
get_header();
// action hook for placing content above #container
thematic_abovecontainer();
?>
<?php
thematic_abovecontent();
?>
<?php
// calling the standard sidebar
thematic_sidebar();
?>
<section class="main">
<?php
// create the navigation above the content
thematic_navigation_above();
// create the navigation above the content
thematic_navigation_above();
// calling the widget area 'index-top'
get_sidebar('index-top');
// action hook for placing content above the index loop
thematic_above_indexloop();
// action hook for placing content above the index loop
thematic_above_indexloop();
// action hook creating the index loop
thematic_indexloop();
// action hook for placing content below the index loop
thematic_below_indexloop();
// create the navigation below the content
thematic_navigation_below();
?>
</section><!-- #main -->
<?php thematic_belowcontent(); ?>
<?php
// action hook for placing content below #container
thematic_belowcontainer();
// calling footer.php
get_footer(); ?>