-
Notifications
You must be signed in to change notification settings - Fork 0
/
header-shop.php
executable file
·96 lines (83 loc) · 4.05 KB
/
header-shop.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
<!DOCTYPE html>
<html>
<head>
<!-- Meta (Need Favicon)-->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="description" content="<?php bloginfo('description'); ?>"/>
<title>Shop Jac Vanek</title>
<!-- Styling -->
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/main.css" media="all">
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/css/ie.css" />
<![endif]-->
<!-- Javascript -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>!window.jQuery && document.write('<script src="/js/jquery-1.10.2.min.js"><\/script>')</script>
<!-- WP & WooCommerce-->
<?php wp_head(); ?>
<?php global $woocommerce; ?>
</head>
<body>
<div class="outer-wrap">
<!-- Sub Header
---------------------->
<div class="wrapper clearfix">
<!-- Mobile Nav Toggle -->
<button id="nav-toggle" class="nav-closed">Menu</button>
<div class="container">
<div class="newsletter left">
<form>
<input class="" type="text" placeholder="Enter Email...">
<input class="" type="submit" value="SIGN UP">
</form>
</div>
<div class="right">
<ul class="left">
<li><a href="" target="_top">CUSTOMER CARE</a></li>
<li><a href="<?php echo get_home_url(); ?>/my-account" target="_top">MY ACCOUNT</a></li>
<li><a class="cart" href="<?php echo $woocommerce->cart->get_cart_url(); ?>"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a></li>
</ul>
<?php get_search_form(); ?>
<ul class="social left">
<li><a class="inst" href="http://instagram.com/jacvanek" target="_blank"></a>Instagram</li>
<li><a class="twit" href="https://twitter.com/jacvanek" target="_blank"></a>Twitter</li>
<li><a class="face" href="https://www.facebook.com/OfficialJacVanek" target="_blank"></a>Facebook</li>
</ul>
</div>
</div>
<!-- Mobile Search Toggle -->
<button id="search-show" class="search-closed">Search</button>
</div>
<div class="container clearfix">
<!-- HEADER
================================================== -->
<header id="home">
<a class="logo" href="<?php echo get_site_url(); ?>" title="Jac Vanek" target="_top">
<img src="<?php echo get_template_directory_uri(); ?>/img/jac-vanek-logo.svg" alt="Jac Vanek Logo">
</a>
<!-- Menu
---------------------->
<nav>
<ul class="linearTrans">
<?php //List pages
$excl = '31,15,14,8,16,33,27'; // Uly
// $excl = '7,13,14,15,16,17,18,19,20,21,22,23'; // Nick
// $excl = '6,13,14,22,7,11,9,12,8,10,18'; //For the live site
$args = array(
'title_li' => __(''), //Remove default title
'depth' => 1, //No sub-pages
'exclude' => $excl
);
wp_list_pages($args);
?>
<?php //Custom menu
// wp_nav_menu( array(
// 'theme_location' => 'header-menu',
// 'menu_class' => 'linearTrans'
// )
// );
?>
</nav>
</header>