channel-index.hbs
1.66 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
<div class="index-page yoho-page">
<div class="index-container">
<div class="index-header clearfix">
<div class="index-logo">
</div>
<div class="box">
<a href="javascript:void(0);" class="no-search">取消</a>
<form action="{{searchUrl}}" class="index-search">
<div class="search-box">
<input type="hidden" name="from" value="search">
<input type="text" name="query" placeholder="搜索" autocomplete="off">
<span class="iconfont clear-text"></span>
<span class="iconfont search-icon empty"></span>
</div>
</form>
</div>
</div>
<div class="index-channel">
<img class="img" src="{{image background.src 640 800}}">
<div class="index-channel-list">
{{#each channelList}}
<a href="{{href}}" class="list-item">
{{title}} <span class="lighter">{{entitle}}</span>
<span class="iconfont right-icon"></span>
</a>
{{/each}}
{{#yohood}}
{{#if showYohood}}
<a href="{{yohoodHref}}" id="yohood" class="list-item no-touch"> <span class="iconfont right-icon"></span></a>
{{/if}}
{{/yohood}}
{{#if double11}}
<a href="{{double11.href}}" class="no-touch" id="double11"></a>
{{/if}}
</div>
</div>
</div>
</div>