-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
86 lines (69 loc) · 1.91 KB
/
header.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
/**
* Header Template
*
* This template calls a series of functions that output the head tag of the document.
* The body and div #main elements are opened at the end of this file.
*
* @package Thematic
* @subpackage Templates
*/
// Create doctype
thematic_create_doctype();
echo " ";
language_attributes();
echo ">\n";
// Opens the head tag
thematic_head_profile();
// Create the meta content type
thematic_create_contenttype();
// Create the title tag
thematic_doctitle();
// Create the meta description
thematic_show_description();
// Create the tag <meta name="robots"
thematic_show_robots();
// Constant defined true by default
if (THEMATIC_COMPATIBLE_FEEDLINKS) {
// Creating the internal RSS links
thematic_show_rss();
// Create comments RSS links
thematic_show_commentsrss();
}
// Create pingback adress
thematic_show_pingback();
/* The function wp_head() loads Thematic's stylesheet and scripts.
* Calling wp_head() is required to provide plugins and child themes
* the ability to insert markup within the <head> tag.
*/
wp_head();
?>
</head>
<?php
// Create the body element and dynamic body classes
thematic_body();
// Action hook to place content before opening #wrapper
thematic_before();
// Filter provided for altering output of wrapping element follows the body tag
if (apply_filters('thematic_open_wrapper', true)) {
echo ('<div id="wrapper" class="hfeed">' . "\n");
}
// Action hook for placing content above the theme header
thematic_aboveheader();
?>
<!-- top bar-->
<div id="topp"></div>
<div id="top-container">
<div id="top-aside"></div>
</div>
<div id="header">
<?php
// Action hook creating the theme header
// thematic_header();
?>
</div>
<?php
// Action hook for placing content below the theme header
thematic_belowheader();
?>
<div id="main">