-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
100 lines (88 loc) · 2.75 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>MyWebRSS</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link href="css/images/icon-128.png" rel="shortcut icon"/>
<link rel="stylesheet" href="css/style.css"/>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" src="https://login.persona.org/include.js"></script>
<script type="text/javascript">
google.load("feeds", "1");
</script>
</head>
<body role="application">
<nav>
<!-- Header -->
<header>
<menu type="toolbar">
<a href="#addfeed"><span class="icon icon-add"></span></a>
</menu>
<h1>MyWebRSS 2.0</h1>
</header>
<!-- Links -->
<div class="inner">
<ul class="list">
<li><a href="#"><span class="indicator">0</span> <span id="home">Home (Unread articles)</span></a></li>
<li><a href="#settings">Settings</a></li>
<li><a href="#about">About</a></li>
</ul>
<div id="menu-feeds">
<h2>Loading</h2>
</div>
</div>
<!-- Footer -->
<div role="toolbar">
<ul class="end">
<li><button class="update" id="menu-refresh" data-state="none">update</button></li>
</ul>
</div>
</nav>
<section role="region" id="main" data-state="none">
<!-- Header -->
<header>
<button id="button-menu"><span class="icon icon-menu">menu</span></button>
<menu type="toolbar">
<button id="button-delete"><span class="icon icon-delete">delete</span></button>
</menu>
<h1 id="page-title">Loading</h1>
</header>
<!-- Content -->
<div role="main">
<section id="page"><h1>Loading</h1></section>
<button id="button-more" style="display: none;">Load more articles</button>
<p> </p>
<!-- Status -->
<section role="status" style="display: none;">
<p></p>
</section>
</div>
<!-- Footer -->
<div role="toolbar">
<button class="mark" id="button-mark">mark</button>
<ul class="end">
<li><button class="update" id="button-refresh" data-state="none">update</button></li>
</ul>
</div>
</section>
<section role="region" id="side" data-state="none">
<!-- Header -->
<header>
<button id="button-back"><span class="icon icon-back">back</span></button>
<h1 id="sidepage-title">Loading</h1>
</header>
<!-- Content -->
<div role="main">
<section id="sidepage"><h1>Loading</h1></section>
<p> </p>
</div>
<!-- Footer -->
<div role="toolbar">
<button class="previous" id="button-previous">previous</button>
<button class="next" id="button-next">next</button>
</div>
</section>
<script data-main="js/app" src="js/lib/require.js"></script>
</body>
</html>