-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
68 lines (59 loc) · 1.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?php
global $gClass;
include('functions.php');
?><!DOCTYPE html>
<!--[if lte IE 8]> <html class="ie9 ie8-7"> <![endif]-->
<!--[if IE 9]> <html class="ie9"> <![endif]-->
<!--[if !IE]>-->
<html>
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<link rel="dns-prefetch" href="//ajax.googleapis.com" /><!-- Grabs repo files quicker -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><!-- This + conditionals above destroy edge detection issues -->
<meta http-equiv="imagetoolbar" content="false" /><!-- Kills IE6 Image toolbar -->
<title></title>
<meta name="author" content="" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="rating" content="general" />
<meta name="robots" content="index, follow" />
<meta name="content-language" content="english">
<meta name="audience" content="all" />
<!-- Disables Scaling on multi-touch interfaces -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0">
<!-- Favicon -->
<link type="image/png" rel="icon" href="assets/images/favicon.png" />
<!-- CSS -->
<link type="text/css" rel="stylesheet" href="assets/css/master<?php if( $isProd ){ echo '.min'; } ?>.css" />
</head>
<body<?php if( $gClass ){ echo ' class="'.$gClass.'"'; } ?>>
<div id="mobile-wrap"></div>
<div id="wrapper">
<header id="header">
<div class="container">
<div class="row">
<div class="col-12">
<p>header</p>
</div>
</div>
</div>
<nav id="nav">
<ul>
<li><a href=""></a></li>
</ul>
</nav>
<div id="mobile-button" class="va-m no-ani">
<div class="fill"></div>
<div class="btn">
<div class="va-m">
<ul class="clearfix">
<li class="t"></li>
<li class="m"></li>
<li class="b"></li>
</ul>
<span>Menu</span>
</div>
</div>
</div>
</header>