default_layout.php
4.97 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, minimum-scale=1.0,user-scalable = no" />
<title>YO'HOOD | 全球潮流新品嘉年华</title>
<link rel="stylesheet" href="<?php echo SITE_RES;?>/css/index.css"/>
<link rel="stylesheet" href="<?php echo SITE_RES;?>/css/emoji.css"/>
</head>
<body>
<div class="yoho-nav clearfix">
<ul class="clearfix">
<li>
<span>YOHO!</span>
<a href="http://www.yoho.cn" target="_blank">集团官网</a>
</li>
<li>
<span>YOHO!有货</span>
<a href="http://www.yohobuy.com" target="_blank">潮流购物</a>
</li>
<li>
<span>YOHO!BOYS</span>
<a href="http://www.yohoboys.com" target="_blank">男生潮流</a>
</li>
<li>
<span>YOHO!GIRLS</span>
<a href="http://www.yohogirls.com" target="_blank">女生潮流</a>
</li>
<li>
<span>YOHO!SHOW</span>
<a href="http://www.yohoshow.com" target="_blank">物趣分享</a>
</li>
<li class="current">
<span>YOHOOD</span>
<a href="javascript:;" target="_blank">潮流嘉年华</a>
</li>
</ul>
<a class="contact-btn" href="/default/contactus">contact</a>
</div>
<?php
$_ctx = Framework_YHttpRequest::instance();
$controller_name = $_ctx->controller_name;
$action_name = $_ctx->action_name;
?>
<div class="header">
<h1 class="logo"></h1>
<div class="nav">
<ul class="clearfix">
<li <?php echo ($controller_name == 'default') ? 'class="current"':''; ?>>
<a href="/default/index">HOME</a>
<span>首页</span>
<i></i>
</li>
<li <?php echo ($controller_name == 'activity' &&
in_array($action_name, array('index','video','partner'))) ? 'class="current"':''; ?>>
<a href="/activity/index">ACTIVITY</a>
<span>活动详情</span>
<i></i>
</li>
<li <?php echo ($controller_name == 'news') ? 'class="current"':''; ?>>
<a href="/news/index">COUNSEL</a>
<span>最新资讯</span>
<i></i>
</li>
<li <?php echo ($controller_name == 'brand') ? 'class="current"':''; ?>>
<a href="/brand/index">BRAND</a>
<span>参展品牌</span>
<i></i>
</li>
<li <?php echo ($controller_name == 'video') ? 'class="current"':''; ?>>
<a href="/video/index">VIDEO</a>
<span>热点视频</span>
<i></i>
</li>
<li <?php echo ($controller_name == 'product' && $action_name == 'recommend') ? 'class="current"':''; ?>>
<a href="/product/recommend">RECOMMEND</a>
<span>限量推荐</span>
<i></i>
</li>
<li <?php echo ($controller_name == 'activity' && $action_name == 'plan') ? 'class="current"':''; ?>>
<a href="/activity/plan">SCENE</a>
<span>现场活动</span>
<i></i>
</li>
<li <?php echo ($controller_name == 'show') ? 'class="current"':''; ?>>
<a href="/show/index">SHOW</a>
<span>潮流分享</span>
<i></i>
</li>
</ul>
</div>
</div>
<div class="bd clearfix">
<div class="wrapper">
<?php $this->_block('main');
$this->_endblock();?>
</div>
</div>
<div class="ft"> <!-- 限量推荐 -->
<div class="limited-goods">
<h2>限量商品</h2>
<div class="limited-slide-box">
<div class="slide-wrap clearfix" id="product_list" offset="0">
</div>
</div>
<div class="limited-slide-control">
<a class="limited-slide-prev iconfont" href="javascript:void(0);"></a>
<a class="limited-slide-next iconfont" href="javascript:void(0);"></a>
</div>
</div>
</div>
<div class="return-top" style="display:none;">
<a href="javascript:void(0);" id="toTop" class="ifont" style="display: inline;">
<span class="iconfont"></span>
TOP
</a>
</div>
<?php $this->_js('index.js', array(
SITE_JS . '/lib/seajs.js',
));?>
<script type="text/javascript">
seajs.use('yohood',function(yohood){
yohood.layout();
})
</script>
<?php $this->_block('js');?>
<?php $this->_endblock();?>
</body>
</html>