-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtopic-index.html
More file actions
95 lines (84 loc) · 3.21 KB
/
topic-index.html
File metadata and controls
95 lines (84 loc) · 3.21 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>热门专题 - 彗星</title>
<meta name="description" content="彗星是一个用户自主评级的区块链投资社区,每个人都可以对项目进行评价并打分。同时彗星还是一个区块链的百科全书,帮助用户挖掘优质的好项目">
<meta name="keywords" content="彗星社区;区块链;数字货币;区块链评测;区块链投资">
<link rel="icon" href="img/huixing.png" type="image/x-icon"/>
<link rel="stylesheet" media="all" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/loading.css">
<link rel="stylesheet" type="text/css" href="css/header-tpl.css"/>
<link rel="stylesheet" href="css/topic-index.css">
<!-- 导航栏 -->
</head>
<body lang="zh-CN" class="reader-black-font">
<div class="comet-main block-comet-main-wrap">
<!-- 全局顶部导航栏 -->
<div class="navbar-fixed-container navbar-fixed-container-hook">
</div>
<div class="mian-container" style="margin-top:100px">
<div class="container" >
<!-- banner -->
<div class="row">
<div class="col-md-12">
<div class="hot_topic_banner">
<img src="img/hot_topic.png"/>
</div>
</div>
</div>
<!-- 专题 -->
<div class="row hot_topic_list">
</div>
<!--加载-->
<!--<div class="row topic_load">
<p onclick="getMoreTopicIndex()">加载更多</p>
</div>-->
</div>
<div class="load-more-container-wrap">
<div class="container">
<div class="load-more-wrap load-more-hook">
<div class="loader1 loader" style="margin-left: 40%;display: none;">
<div></div>
<div></div>
<div></div>
</div>
</div>
<div class="load-more-wrap no-more-hook" style="display: none;">
<div class="loading-more">
已无更多数据
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<script type="text/html" id="topic_topic_index">
<%for(var i = 0; i < list.length; i++) {%>
<div class="col-md-4" data-topicid='<%:=list[i].id %>' onclick="jumpToTopic(this)">
<div class="topic_box">
<a href="">
<img src="<%:=list[i].topicPic %>" class="topic_icon"/>
</a>
<div class="hot_topic_title"><%:=list[i].topic %></div>
<div class="hot_topic_introduce"><%:=list[i].description %></div>
<div class="hot_topic_attention">已收录<%:=list[i].counts %>篇文章</div>
</div>
</div>
<%}%>
</script>
<script src="js/jquery-2.1.1.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/plugins/swiper/swiper-4.2.2.min.js"></script>
<script src="js/jquery.cookie.js"></script>
<script src="js/common.js"></script>
<script src="js/template.js"></script>
<script src="js/plugins/layer/layer.js"></script>
<script src="js/topic-index.js" ></script>
</body>
</html>