-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
123 lines (99 loc) · 3.96 KB
/
Copy pathheader.php
File metadata and controls
123 lines (99 loc) · 3.96 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
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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php wp_title(); ?></title>
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]-->
<script src="<?php bloginfo('stylesheet_directory') ?>/js/jquery-2.1.4.min.js"></script>
<script src="<?php bloginfo('stylesheet_directory') ?>/js/owl/owl.carousel.min.js"></script>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory') ?>/style.css">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory') ?>/css/styles.css">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory') ?>/css/font-awesome.min.css">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory') ?>/css/brandon-grotesque.css">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory') ?>/js/owl/assets/owl.carousel.min.css">
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory') ?>/js/owl/assets/owl.theme.default.min.css">
<link rel="icon" type="image/png" href="<?php bloginfo('stylesheet_directory') ?>/img/favicon.png">
<!--[if gte IE 9]>
<style type="text/css">
#gradient {
filter: none;
}
</style>
<![endif]-->
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php include_once('fragment-nav.php'); ?>
<a name="top"></a>
<header>
<div class="outer-wrapper">
<div class="inner-wrapper">
<div class="logo"><a href="<?php echo site_url(); ?>"><img src="<?php bloginfo('stylesheet_directory') ?>/img/new-clean-logo.png" /></a></div>
<div class="nav">
<a href="<?php echo get_site_url(); ?>/#capabilities">Capabilities</a>
<a href="<?php echo get_site_url(); ?>/#contact">Contact</a>
<a href="<?php echo get_site_url(); ?>/about/">About Us</a>
</div>
</div>
</div>
</header>
<?php if (is_front_page()) { ?>
<div id="feature_panel" class="owl-carousel" style="">
<div class="item" style="background-image: url('<?php bloginfo('stylesheet_directory') ?>/img/fpo-pickle.jpg');">
<div class="banner">
<span class="headline">Featured Work</span><br/>
<span class="project">Pickle Day Website</span> For <span class="client">Lower East Side Partnership</span>
</div>
</div>
<div class="item" style="background-image: url('<?php bloginfo('stylesheet_directory') ?>/img/fpo-pickle.jpg');">
<div class="banner">
<span class="headline">Featured Work</span><br/>
<span class="project">Pickle Day Website</span> For <span class="client">Lower East Side Partnership</span>
</div>
</div>
<div class="item" style="background-image: url('<?php bloginfo('stylesheet_directory') ?>/img/fpo-pickle.jpg');">
<div class="banner">
<span class="headline">Featured Work</span><br/>
<span class="project">Pickle Day Website</span> For <span class="client">Lower East Side Partnership</span>
</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function() {
$(".owl-carousel").owlCarousel({
loop: true,
nav: false,
dots: true,
autoWidth: false,
autoplay: true,
autoplayTimeout: 4000,
responsive:{
0:{
items:1
},
}
});
$("a").on("click", function(event) {
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$("html, body").animate({
scrollTop: $(hash).offset().top
}, 400, function() {
window.location.hash = hash;
});
}
});
});
</script>
<?php } ?>
<div class="container" id="gradient">