-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
131 lines (107 loc) · 3.98 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
/**
* The template for displaying the header
*
* Displays all of the head element and everything up until the "site-content" div.
*
* @package WordPress
* @subpackage CelandOne
* @since CelandOne 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width">
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<!--[if lt IE 9]>
<script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js"></script>
<![endif]-->
<?php wp_head(); ?>
<link rel="stylesheet" href="/wp-content/themes/CelandOne-master/css/animations.css">
<link rel="stylesheet" href="http://garris.github.io/TremulaJS/dist/Tremula.css">
<style type="text/css"> @import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);</style>
<script src="http://garris.github.io/TremulaJS/libs/jquery-min.js"></script>
<script src="http://garris.github.io/TremulaJS/libs/hammer.js"></script>
<script src="http://garris.github.io/TremulaJS/libs/jsBezier-0.6.js"></script>
<script src="http://garris.github.io/TremulaJS/dist/Tremula.js"></script>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<style>
/* === Tremula Styles === */
/* Note: any gridBox border added must be compensated for by adding negative margin */
.gridBox{
border:#fff 2px solid;
margin-top: 2%;
}
.moneyShot{
width:100%;
}
.boxLabel{display: inline-block;font-size: 13px;font-weight: 100; color:#808080;}
.doReflect .boxLabel{
display:inline-block;
-webkit-transform: translateZ(0);
}
.doReflect .gridBox{
-webkit-box-reflect : below 18px -webkit-gradient(
linear, left bottom, left top,
from(rgba(255,255,255,0.25)),
color-stop(0.3, transparent)
);
}
/* .tremulaContainer must have actual dimentionality (set H&W) */
.tremulaContainer{
height:60%;
height:calc(100% - 20px);
width:100%;
position:relative;
top:-10px;
background-image:url(http://pngimg.com/upload/smoke_PNG962.png);
background-repeat:no-repeat;
left:0;
z-index: 1;
margin:0px auto;
border: black solid 0px;
}
.pageLayoutContainer{
height:100%;
width:100%;
position:fixed;
float:right;
margin:0;
border: black solid 0px;
min-height: 200px;
}
</style>
</head>
<body <?php body_class(); ?>>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v2.4";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div id="page" class="hfeed site">
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'celandone' ); ?></a>
<div id="sidebar" class="sidebar">
<header id="masthead" class="site-header" role="banner">
<div class="site-branding">
<?php
if ( is_front_page() && is_home() ) : ?>
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<?php else : ?>
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
<?php endif;
$description = get_bloginfo( 'description', 'display' );
if ( $description || is_customize_preview() ) : ?>
<p class="site-description"><?php echo $description; ?></p>
<?php endif;
?>
<button class="secondary-toggle"><?php _e( 'Menu and widgets', 'celandone' ); ?></button>
</div><!-- .site-branding -->
</header><!-- .site-header -->
<?php get_sidebar(); ?>
</div><!-- .sidebar -->
<div id="content" class="site-content">