-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnewsList.html
More file actions
134 lines (125 loc) · 4.98 KB
/
Copy pathnewsList.html
File metadata and controls
134 lines (125 loc) · 4.98 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Smart News</title>
<link rel="stylesheet" href="./css/jquery.mobile-1.3.2.min.css">
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<!-- page : news list -->
<div data-role="page" id="list-page" data-theme="a">
<!-- header -->
<!--header data-role="header" data-position="fixed" data-mini="true">
<div data-role="navbar" data-inline="true" data-iconpos="left" data-mini="true">
<ul>
<li><a href="#list-page" id="menu-news" class="ui-btn-active">News</a></li>
<li><a href="#list-page" id="menu-tweets">Tweets</a></li>
<li><a href="#list-page" id="menu-youtube">Youtube</a></li>
</ul>
</div>
</header-->
<!-- // header -->
<!-- section -->
<section data-role="content">
<ul id="list-box" data-role="listview">
</ul>
</section>
<!-- // section -->
<!-- footer -->
<footer data-role="footer" data-position="fixed" data-mini="true">
<div class="ui-grid-b">
<div class="ui-block-a">
<a id='btn-reload' data-icon="refresh" data-role="button" data-inline="true" data-mini="true">Reload</a>
</div>
<div class="ui-block-b">
<h4>Smart News</h4>
</div>
<div class="ui-block-c">
<div data-role="controlgroup" class="ui-btn-right" data-type="horizontal">
<a href="#analysis" id='link-analysis' data-icon="grid" data-role="button" data-inline="true" data-mini="true">Analysis</a>
<a href="#options" id='link-options' data-icon="gear" data-rel="dialog" data-transition="pop" data-close-btn="none" data-role="button" data-inline="true" data-mini="true">Options</a>
</div>
</div>
</div>
</footer>
<!-- // footer -->
</div>
<!-- // page : news list -->
<!-- page : options -->
<div data-role="page" id="options" data-theme="a" data-close-btn="none">
<!-- header -->
<header data-role="header" data-position="fixed" data-mini="true">
<h3>Options</h3>
</header>
<!-- // header -->
<!-- section -->
<section data-role="content">
<div id="lang-picker" data-role="fieldcontain">
<label id="label-select-language" for="langCode" class="select">Language to search:</label>
</div>
<div id="cnt-picker" data-role="fieldcontain">
<label id="label-list-count" for="listCnt" class="select">List count for each keyword:</label>
</div>
<ul id='keyword-list' data-role="listview">
</ul>
</section>
<!-- // section -->
<!-- footer -->
<footer data-role="footer" data-position="fixed">
<fieldset class="ui-grid-a">
<div class="ui-block-a">
<a data-role="button" id="btn-add-keyword" data-icon="add" tabindex="1" data-inline="true" data-mini="true">Add Keyword</a>
</div>
<div class="ui-block-b">
<div data-role="controlgroup" class="ui-btn-right" data-type="horizontal">
<a href="#list-page" data-role="button" id="btn-cancel" tabindex="3" data-icon="delete" data-mini="true">Cancel</a>
<a data-role="button" id="btn-save" data-icon="check" tabindex="2" data-mini="true">Save</a>
</div>
</div>
</fieldset>
</footer>
<!-- // footer -->
</div>
<!-- // page : options -->
<!-- page : analysis -->
<div data-role="page" id="analysis" data-theme="a" data-close-btn="none">
<!-- header -->
<!--header data-role="header" data-position="fixed" data-mini="true">
<h3>Keywords usage analysis</h3>
</header-->
<!-- // header -->
<!-- section -->
<section data-role="content">
<div class='tbl-wrapper'>
<table data-role="table" id="tbl-sort" data-mode="reflow" class="ui-responsive table-stroke" align="center">
<thead>
<tr>
<th data-priority="1">Rank</th>
<th data-priority="persist">Keyword</th>
<th data-priority="2">Percentage</th>
<th data-priority="4">Click</th>
<th data-priority="5">Access date</th>
<th data-priority="3">Score</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</section>
<!-- // section -->
<!-- footer -->
<footer data-role="footer" data-position="fixed" data-mini="true">
<h4>Keywords usage analysis</h4>
<a href="#list-page" data-role="button" id="btn-back" class="ui-btn-right" data-icon="back" data-mini="true">Back</a>
</footer>
<!-- // footer -->
</div>
<!-- // page : analysis -->
<script src="./js/jquery-1.10.2.min.js"></script>
<script src="./js/jquery.mobile-1.3.2.cust.min.js"></script>
<script src="./js/lib.js"></script>
<script src="./js/main.js"></script>
</body>
</html>