-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
239 lines (218 loc) · 8.48 KB
/
header.php
File metadata and controls
239 lines (218 loc) · 8.48 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<?php
/**
* The header for our theme.
*
* Displays all of the <head> section and everything up till <div id="content">
*
* @package storefront
*/
?>
<!doctype html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2.0, user-scalable=no">
<meta name="description" content="헤라(HhEeRrAa) 끝없는 디테일의 차이를 보여주는 것, 디테일에서 무한한 차이를 보여주는 것 Showing the endless differences in detail.">
<meta name="google-site-verification" content="rDlx5JnqnOiPFyUnR3eWfFCOa1DhVIysnoiRngFH28Q" />
<meta name="naver-site-verification" content="64932338dfa6eb91b0a202c29fa39c8b44d08894"/>
<meta name="p:domain_verify" content="d43d82f133f70698568c10c75df6c3b0"/>
<meta name="author" content="헤라(HeraKim)" />
<meta name="keywords" content="디자이너 브랜드" />
<meta name="format-detection" content="telephone=no">
<meta property="og:type" content="website" />
<meta property="og:title" content="HhEeRrAa - Showing the endless differences in detail" />
<meta property="og:description" content="헤라(HhEeRrAa) - 끝없는 디테일의 차이를 보여주는 것, 디테일에서 무한한 차이를 보여주는 것. Showing the endless differences in detail" />
<meta property="og:image" content="<?php echo THEME_IMG_PATH; ?>/brand-logo_main.png" />
<link rel="profile" href="https://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-140788690-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-140788690-1');
</script>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<?php do_action( 'storefront_before_site' ); ?>
<div id="page" class="hfeed site">
<div class="hamburger-content is-closed">
<div class="hamburger-header">
<div class="hamburger-close-button">
<img src="<?php echo THEME_IMG_PATH; ?>/close_main.png" class="hamburger-close-button" alt="Close"/>
</div>
</div>
<div class="hamburger-icon-menu">
<div class="icon-nav-top">
<?php if ( !is_user_logged_in() ) { ?>
<li class="user-menus-item">
<a href="https://hheerraa.co.kr/?page_id=9" aria-current="page">
<!-- <img src="<?php echo THEME_IMG_PATH; ?>/login_main.png" alt="login"/> -->
Login
</a>
</li>
<li class="user-menus-item">
<a href="https://hheerraa.co.kr/?page_id=84">
<!-- <img src="<?php echo THEME_IMG_PATH; ?>/orders_main.png" alt="order tracking for nonmember"/> -->
Order
</a>
</li>
<?php } ?>
<?php if ( is_user_logged_in() ) { ?>
<li class="user-menus-item">
<a
href="https://hheerraa.co.kr/?page_id=9">
<!-- <img src="<?php echo THEME_IMG_PATH; ?>/login_main.png" alt="account"/> -->
Account
</a>
</li>
<li class="user-menus-item">
<a
href="https://hheerraa.co.kr/?page_id=9&orders">
<!-- <img src="<?php echo THEME_IMG_PATH; ?>/orders_main.png" alt="orders"/> -->
Orders
</a>
</li>
<?php } ?>
</div>
<div class="icon-nav-bottom">
<li class="user-menus-item">
<a
href="https://hheerraa.co.kr/?page_id=7">
<!-- <img src="<?php echo THEME_IMG_PATH; ?>/bag_main.png" alt="bag"/> -->
Shoppingbag
</a>
</li>
<li class="user-menus-item">
<a
href="https://hheerraa.co.kr/?page_id=55">
<!-- <img src="<?php echo THEME_IMG_PATH; ?>/heart_main.png" alt="wishlist"/> -->
Wishlist
</a>
</li>
</div>
</div>
<div class="hamburger-navigation">
<?php
/**
* Functions hooked into storefront_header action
*
* @hooked storefront_header_container - 0
* @hooked storefront_skip_links - 5
* @hooked storefront_social_icons - 10
* @hooked storefront_site_branding - 20
* @hooked storefront_secondary_navigation - 30
* @hooked storefront_product_search - 40 x
* @hooked storefront_header_container_close - 41
* @hooked storefront_primary_navigation_wrapper - 42
* @hooked storefront_primary_navigation - 50
* @hooked storefront_header_cart - 60 x
* @hooked storefront_primary_navigation_wrapper_close - 68
*/
do_action( 'storefront_header' );
?>
</div>
<!-- <div class="hamburger-footer">
<a class="footer-sns-link" href="#">
<img src="<?php echo THEME_IMG_PATH; ?>/youtube-white.png" alt="youbute link"/>
</a>
<a class="footer-sns-link" href="#">
<img src="<?php echo THEME_IMG_PATH; ?>/pinterest-white.png" alt="pinterest link"/>
</a>
<a class="footer-sns-link" href="#">
<img src="<?php echo THEME_IMG_PATH; ?>/instagram-white.png" alt="instagram link"/>
</a>
</div> -->
</div>
<?php do_action( 'storefront_before_header' ); ?>
<header id="masthead" class="site-header--common header-custom" role="banner" style="<?php storefront_header_styles(); ?>">
<div class="logo-menu-container col-full">
<a class="skip-link screen-reader-text" href="#site-navigation">Skip to navigation</a>
<a class="skip-link screen-reader-text" href="#content">Skip to content</a>
<div class="site-branding header-brand-logo">
<a href="https://hheerraa.co.kr/" class="custom-logo-link" rel="home" itemprop="url">
<img class="logo-black" src="<?php echo THEME_IMG_PATH; ?>/brand-logo_main.png" class="custom-logo" alt="HhEeRrAa-Logo"/>
<img class="logo-white" src="<?php echo THEME_IMG_PATH; ?>/brand-logo_main.png" class="custom-logo" alt="HhEeRrAa-Logo"/>
</a>
</div>
<div class="hamburger-menu-button">
<img id="hamburger-menu-button" src="<?php echo THEME_IMG_PATH; ?>/hamburger_main.svg" class="hamburger-menu-button" alt="Menu"/>
</div>
</div>
<div class="icon-nav-container">
<div class="icon-nav-left">
<?php if ( !is_user_logged_in() ) { ?>
<li class="user-menus-item">
<a class="hover-effect-link"
href="https://hheerraa.co.kr/?page_id=9&orders">
<span>Login</span>
<span>
<img src="<?php echo THEME_IMG_PATH; ?>/login_main.png" alt="login" width="16" height="16"/>
</span>
</a>
</li>
<li class="user-menus-item">
<a class="hover-effect-link"
href="https://hheerraa.co.kr/?page_id=9&orders">
<span>Orders</span>
<span>
<img src="<?php echo THEME_IMG_PATH; ?>/ orders_main.png" alt="orders" width="16" height="16"/>
</span>
</a>
</li>
<?php } ?>
<?php if ( is_user_logged_in() ) { ?>
<li class="user-menus-item">
<a class="hover-effect-link"
href="https://hheerraa.co.kr/?page_id=9">
<span>Account</span>
<span>
<img src="<?php echo THEME_IMG_PATH; ?>/login_main.png" alt="account" width="16" height="16"/>
</span>
</a>
</li>
<li class="user-menus-item">
<a class="hover-effect-link"
href="https://hheerraa.co.kr/?page_id=9&orders">
<span>Orders</span>
<span>
<img src="<?php echo THEME_IMG_PATH; ?>/ orders_main.png" alt="orders" width="16" height="16"/>
</span>
</a>
</li>
<?php } ?>
</div>
<div class="icon-nav-right">
<li class="user-menus-item">
<a class="hover-effect-link"
href="https://hheerraa.co.kr/?page_id=7">
<span>Shoppingbag</span>
<span>
<img src="<?php echo THEME_IMG_PATH; ?>/bag_main.png" alt="bag" width="16" height="16"/>
</span>
</a>
</li>
<li class="user-menus-item">
<a class="hover-effect-link"
href="https://hheerraa.co.kr/?page_id=55">
<span>Wishlist</span>
<span>
<img src="<?php echo THEME_IMG_PATH; ?>/heart_main.png" alt="wishlist" width="16" height="16"/>
</span>
</a>
</li>
</div>
</div>
</header>
<aside class="left-sidebar left-sidebar--common">
<?php
do_action( 'storefront_header' );
?>
</aside>
<div id="content" class="site-content" tabindex="-1">
<div class="col-full col-full--home">
<?php
do_action( 'storefront_content_top' );