1
|
1 |
<?php |
|
2 |
|
|
3 |
// Creating the doctype |
|
4 |
thematic_create_doctype(); |
|
5 |
echo " "; |
|
6 |
language_attributes(); |
|
7 |
echo ">\n"; |
|
8 |
|
|
9 |
// Creating the head profile |
|
10 |
thematic_head_profile(); |
|
11 |
|
|
12 |
// Creating the doc title |
|
13 |
thematic_doctitle(); |
|
14 |
|
|
15 |
// Creating the content type |
|
16 |
thematic_create_contenttype(); |
|
17 |
|
|
18 |
// Creating the description |
|
19 |
thematic_show_description(); |
|
20 |
|
|
21 |
// Creating the robots tags |
|
22 |
thematic_show_robots(); |
|
23 |
|
|
24 |
// Creating the canonical URL |
|
25 |
thematic_canonical_url(); |
|
26 |
|
|
27 |
// Loading the stylesheet |
|
28 |
thematic_create_stylesheet(); |
|
29 |
|
|
30 |
// Creating the internal RSS links |
|
31 |
thematic_show_rss(); |
|
32 |
|
|
33 |
// Creating the comments RSS links |
|
34 |
thematic_show_commentsrss(); |
|
35 |
|
|
36 |
// Creating the pingback adress |
|
37 |
thematic_show_pingback(); |
|
38 |
|
|
39 |
// Enables comment threading |
|
40 |
thematic_show_commentreply(); |
|
41 |
|
|
42 |
// Calling WordPress' header action hook |
|
43 |
wp_head(); |
|
44 |
|
|
45 |
?> |
|
46 |
|
|
47 |
</head> |
|
48 |
|
|
49 |
<?php |
|
50 |
|
|
51 |
if (apply_filters('thematic_show_bodyclass',TRUE)) { |
|
52 |
// Creating the body class |
|
53 |
?> |
|
54 |
|
|
55 |
<body class="<?php thematic_body_class() ?>"> |
|
56 |
|
|
57 |
<?php } |
|
58 |
|
|
59 |
// action hook for placing content before opening #wrapper |
|
60 |
thematic_before(); ?> |
|
61 |
|
|
62 |
<div id="wrapper" class="hfeed"> |
|
63 |
|
|
64 |
<?php |
|
65 |
|
|
66 |
// action hook for placing content above the theme header |
|
67 |
thematic_aboveheader(); |
|
68 |
|
|
69 |
?> |
|
70 |
|
|
71 |
<div id="header"> |
|
72 |
|
|
73 |
<?php |
|
74 |
|
|
75 |
// action hook creating the theme header |
|
76 |
thematic_header(); |
|
77 |
|
|
78 |
?> |
|
79 |
|
|
80 |
</div><!-- #header--> |
|
81 |
|
|
82 |
<?php |
|
83 |
|
|
84 |
// action hook for placing content below the theme header |
|
85 |
thematic_belowheader(); |
|
86 |
|
|
87 |
?> |
|
88 |
|
|
89 |
<div id="main"> |
|
90 |
|