-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsitenav.html
More file actions
70 lines (54 loc) · 1.59 KB
/
sitenav.html
File metadata and controls
70 lines (54 loc) · 1.59 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"/>
<link rel="stylesheet" href="./css/base.css"/>
<link rel="stylesheet" href="./css/sitenav.css"/>
</head>
<body>
<!--头部开始-->
<header class="sit-header">
<div class="left">
<a href="index.html"><img src="images/icback.svg" alt=""/></a>
<h2>省钱控-最新优惠</h2>
</div>
<a class="downLoad" href="#"></a>
</header>
<!--头部结束-->
<section class="getsitenav">
<ul></ul>
<script type="text/template" id="getsitenav">
{{each result as v i }}
<li navId="{{v.navId}}">
<a href="{{v.navHref}}">
<img src="{{v.navImg}}" alt="{{v.navTitle}}"/>
{{v.navTitle}}
</a>
</li>
{{/each}}
</script>
</section>
<!--尾部区域-->
<footer class="clearfix">
<ul class="clearfix">
<li><a href="#">登录</a></li>
<li><a href="#">注册</a></li>
<li><a href="#">返回顶部</a></li>
</ul>
<p><a href="#">手机APP下载</a>
<a href="">慢慢买手机版</a>
-- 掌上比价平台
</p>
<p>m.manmanbuy.com</p>
</footer>
<!--尾部区域-->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/artTemplate/template.js"></script>
<script src="js/common.js"></script>
<script src="js/common/route.js"></script>
<script src="js/sitenav.js"></script>
</body>
</html>