-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
62 lines (43 loc) · 1.58 KB
/
header.php
File metadata and controls
62 lines (43 loc) · 1.58 KB
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
<?php
/**
* Header Template Part
*
* Template part file that contains the HTML document head and
* opening HTML body elements, as well as the site header
*
* @package Tiga
* @author Satrya
* @license license.txt
* @since 0.0.1
*
*/
?>
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js ie8 oldie" <?php language_attributes(); ?>> <![endif]-->
<!--[if IE 9]> <html class="no-js ie9 oldie" <?php language_attributes(); ?>> <![endif]-->
<!--[if gt IE 9]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php wp_title(); ?></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(); ?>>
<div id="page" class="hfeed site">
<?php tiga_before(); ?>
<header id="masthead" class="site-header" role="banner">
<div id="main-header" class="clearfix">
<div class="site-branding">
<?php tiga_site_title(); ?>
</div><!-- end .site-branding -->
<?php get_template_part( 'menu', 'primary' ); // load menu-primary.php file. ?>
</div> <!-- end #main-header -->
<?php get_template_part( 'menu', 'secondary' ); // load menu-secondary.php file. ?>
<?php tiga_header(); ?>
</header><!-- #masthead .site-header -->
<?php tiga_main_before(); ?>
<div id="main">
<?php tiga_main(); ?>