forked from salcode/bootstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
executable file
·37 lines (32 loc) · 1.53 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
<?php
/**
* The Header for the theme.
*
* @package bootstart
*/
?><!DOCTYPE html>
<?php bstart_comment('BEGIN header.php'); ?>
<?php
// IE conditional comments to html element
// http://www.paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
?><!--[if lt IE 7 ]> <html class="ie ie6 no-js" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 7 ]> <html class="ie ie7 no-js" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 8 ]> <html class="ie ie8 no-js" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 9 ]> <html class="ie ie9 no-js" <?php language_attributes(); ?>> <![endif]-->
<!--[if gt IE 9]><!--><html class="no-js" <?php language_attributes(); ?>><!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<?php // viewport based on http://getbootstrap.com/getting-started/#template ?>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php wp_title( '|', true, 'right' ); ?> - <?php bloginfo('name'); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php do_action( 'before_page_container' ); ?>
<div id="page" class="<?php bstart_class('page', '!hfeed container'); ?>">
<?php do_action( 'before' ); ?>
<?php do_action('header_after'); ?>
<div id="content" class="<?php bstart_class('content', 'row'); ?>">
<?php bstart_comment('END header.php'); ?>