-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathheader.php
51 lines (47 loc) · 1.52 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
<?php
/**
* Project: early-years
* Project Sponsor: BCcampus <https://bccampus.ca>
* Copyright 2012-2017 Brad Payne <https://bradpayne.ca>
* Date: 2017-11-02
* Licensed under GPLv3, or any later version
*
* @author Brad Payne
* @package OPENTEXTBOOKS
* @license https://www.gnu.org/licenses/gpl-3.0.txt
* @copyright (c) 2012-2017, Brad Payne
*/
?>
<!DOCTYPE html>
<!--[if lt IE 7 ]>
<html <?php language_attributes(); ?> class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]>
<html <?php language_attributes(); ?> class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]>
<html <?php language_attributes(); ?> class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]>
<html <?php language_attributes(); ?> class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<html <?php language_attributes(); ?> class="no-js"> <!--<![endif]-->
<?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 row <?php do_action( 'main_wrap_class' ); ?>">
<?php
do_action( 'open_main_wrap' );
?>