-
Notifications
You must be signed in to change notification settings - Fork 3
/
header.php
29 lines (25 loc) · 1.01 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
<?php
/**
* @package Inti
* @subpackage Templates
* @since 1.0.0
*/?><!DOCTYPE html>
<!--[if lt IE 7]><html <?php language_attributes(); ?> class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if ( IE 7 )&!( IEMobile )]><html <?php language_attributes(); ?> class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if ( IE 8 )&!( IEMobile )]><html <?php language_attributes(); ?> class="no-js lt-ie9"><![endif]-->
<!--[if gt IE 8]><!--> <html <?php language_attributes(); ?> class="no-js"><!--<![endif]-->
<head>
<!-- WordPress head -->
<?php wp_head(); ?>
<!-- end WordPress head -->
<?php inti_hook_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php inti_hook_site_before(); ?>
<div id="page" class="webpage">
<?php
// Uncomment the header type you want, then probably remove the files for the others
// get_template_part('template-parts/part', 'header-simple');
// get_template_part('template-parts/part', 'header-business-hero');
get_template_part('template-parts/part', 'header-modern-hero');
?>