forked from AgriLife/AgriFlex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·72 lines (55 loc) · 2.08 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
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="wrap">
*
* @package AgriFlex
* @since AgriFlex 1.0
*/
?>
<!DOCTYPE html>
<!--[if lt IE 7]>
<html id="ie6" class="no-js ie6 oldie" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 7]>
<html id="ie7" class="no-js ie7 oldie" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html id="ie8" class="no-js ie8 oldie" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?> class="no-js" id="doc">
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Print the <title> tag based on what is being viewed.
We filter the output of wp_title() a bit - see
agriflex_filter_wp_title() in functions.php.
-->
<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 bloginfo( 'stylesheet_url' ); ?>?v=100" />
<link rel="shortcut icon" href="http://agrilifecdn.tamu.edu/wp-content/themes/agrilife-2.0/favicon.ico" type="image/ico" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!-- Action hook to include some head stuff -->
<?php agriflex_head(); ?>
<!--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. -->
<?php wp_head(); ?>
</head>
<body <?php body_class('not-active'); ?> id="page-body">
<!-- Action hook for inserting top navigation and other elements -->
<?php agriflex_before_header(); ?>
<div id="wrapper" class="hfeed">
<!-- Action hook creating the site header -->
<?php agriflex_header(); ?>
<!-- Action hook for placing content below the site header -->
<?php agriflex_after_header(); ?>
<div id="content-wrap" role="document">
<div class="wrap">