forked from PressCrew/infinity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
47 lines (44 loc) · 1.46 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
<?php
/**
* Infinity Theme: header template
*
* @author Bowe Frankema <[email protected]>
* @link http://infinity.presscrew.com/
* @copyright Copyright (C) 2010-2011 Bowe Frankema
* @license http://www.gnu.org/licenses/gpl.html GPLv2 or later
* @package Infinity
* @subpackage templates
* @since 1.0
*/
?>
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html <?php language_attributes(); ?> class="no-js"> <!--<![endif]-->
<?php
do_action( 'open_meta' );
?>
<?php
infinity_get_template_part( 'templates/parts/header-head');
?>
<body <?php body_class() ?> id="infinity-base">
<?php
do_action( 'open_body' );
?>
<div id="wrapper" class="hfeed">
<?php
do_action( 'open_wrapper' );
?>
<?php // the header-banner template contains all the markup for the header(logo) and menus. You can easily fork/modify this in your child theme without having to overwrite the entire header.php file.
infinity_get_template_part( 'templates/parts/header-banner');
?>
<?php
do_action( 'open_container' );
?>
<!-- start main wrap. the main-wrap div will be closed in the footer template -->
<div class="main-wrap <?php do_action( 'main_wrap_class' ); ?>">
<?php
do_action( 'open_main_wrap' );
?>