-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
128 lines (110 loc) · 2.96 KB
/
header.php
File metadata and controls
128 lines (110 loc) · 2.96 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package Catch Themes
* @subpackage Catch_Box
* @since Catch Box 1.0
*/
?><!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 7]>
<html id="ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html id="ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width" />
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php echo get_stylesheet_uri(); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<?php
/**
* catchbox_before hook
*/
do_action( 'catchbox_before' ); ?>
<div id="page" class="hfeed">
<?php
/**
* catchbox_before_header hook
*/
do_action( 'catchbox_before_header' );
?>
<header id="branding" role="banner">
<?php
/**
* catchbox_before_headercontent hook
*/
do_action( 'catchbox_before_headercontent' ); ?>
<div id="header-content" class="clearfix">
<?php
/**
* catchbox_headercontent hook
*
* @hooked catchbox_headerdetails - 10
* @hooked catchbox_header_search - 15
*/
do_action( 'catchbox_headercontent' ); ?>
</div><!-- #header-content -->
<?php
/**
* catchbox_after_headercontent hook
*
* @hooked catchbox_header_menu - 10
*/
do_action( 'catchbox_after_headercontent' ); ?>
</header><!-- #branding -->
<?php
/**
* catchbox_after_header hook
*/
do_action( 'catchbox_after_header' );
?>
<?php
/**
* catchbox_before_main hook
*/
do_action( 'catchbox_before_main' );
?>
<div id="main" class="clearfix">
<?php
/**
* catchbox_before_primary hook
*
*/
do_action( 'catchbox_before_primary' ); ?>
<div id="primary">
<?php
/**
* catchbox_before_content hook
*
*/
do_action( 'catchbox_before_content' ); ?>
<div id="content" role="main">
<?php
/**
* catchbox_content hook
*
* @hooked catchbox_slider_display - 10
*/
do_action( 'catchbox_content' ); ?>