-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathheader.php
executable file
·92 lines (73 loc) · 3.41 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
<link href="//www.google-analytics.com" rel="dns-prefetch">
<link href="<?php echo get_template_directory_uri(); ?>/img/icons/favicon.ico" rel="shortcut icon">
<link href="<?php echo get_template_directory_uri(); ?>/img/icons/touch.png" rel="apple-touch-icon-precomposed">
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/lib/PixelPalette.js"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/lib/tween.min.js"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/_MAIN.js"></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<?php bloginfo('description'); ?>">
<?php wp_head(); ?>
<script>
// conditionizr.com
// configure environment tests
conditionizr.config({
assets: '<?php echo get_template_directory_uri(); ?>',
tests: {}
});
</script>
</head>
<body bgcolor="#000" class="bg0 stickyPage" onload="init()" onresize="metrics()">
<!-- header -->
<div id="headBG" class="bg2"></div>
<div id="head" class="col8">
<a href="<?php echo home_url(); ?>"><h1>BlokDust Guide</h1></a>
</div>
<div id="menu" class="col8">
<svg height="48" width="45">
<line x1="0" y1="50%" x2="33%" y2="19%" style="stroke:currentColor;stroke-width:2" />
<line x1="33%" y1="19%" x2="66%" y2="50%" style="stroke:currentColor;stroke-width:2" />
<line x1="66%" y1="50%" x2="99%" y2="19%" style="stroke:currentColor;stroke-width:2" />
<line x1="0" y1="81%" x2="33%" y2="50%" style="stroke:currentColor;stroke-width:2" />
<line x1="33%" y1="50%" x2="66%" y2="81%" style="stroke:currentColor;stroke-width:2" />
<line x1="66%" y1="81%" x2="99%" y2="50%" style="stroke:currentColor;stroke-width:2" />
</svg>
</div>
<div id="search" class="col8">
<form id="tfnewsearch" method="get" action="<?php echo home_url(); ?>" role="search">
<input type="search" id="sbx" name="s" size="21" maxlength="120" value="Search">
<label>
<input type="submit">
<div id="submitBox">
<svg class="searchSubmit" height="11" width="22">
<line x1="0" y1="0" x2="50%" y2="100%" style="stroke:currentColor;stroke-width:2" />
<line x1="50%" y1="100%" x2="100%" y2="0" style="stroke:currentColor;stroke-width:2" />
</svg>
</div>
</label>
</form>
</div>
<!-- /header -->
<!-- menu -->
<div id="menuPanel" class="bg2 col8">
<div id="menuClose">
<svg height="25" width="25">
<line x1="0" y1="0" x2="100%" y2="100%" style="stroke:currentColor;stroke-width:2" />
<line x1="0" y1="100%" x2="100%" y2="0" style="stroke:currentColor;stroke-width:2" />
</svg>
</div>
<div class="menuTxt">
<div class="wideLine2 col1"></div>
<h2>Wiki</h2>
<?php posts_in_category(21); ?>
<div class="wideLine2 col1"></div>
<h2>Features</h2>
<?php posts_in_category(31); ?>
</div>
</div>
<!-- /menu -->