-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex - Copie.html
40 lines (37 loc) · 1.18 KB
/
index - Copie.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Indawo</title>
<link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css"/>
<link rel="stylesheet" href="css/semantic.min.css"/>
</head>
<body>
<div data-role="page">
<header data-role="header" data-back-btn="true">
<h1>Indawo</h1>
</header>
<div data-role="content">
<p>
Audero Feed Reader is a very basic feed aggregator to keep in one place all the news and the articles
you care about.
</p>
<a href="add-feed.html" data-role="button">Add Feed</a>
<a href="list-feeds.html" data-role="button">List Feed</a>
<div class="button inverted red">MEGA test</div>
</div>
</div>
</body>
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/jquery.mobile-1.4.5.min.js"></script>
<script src="js/semantic.min.js"></script>
<script src="cordova.js"></script>
<script src="js/feed.js"></script>
<script src="js/application.js"></script>
<script>
$(document)
.on('pagebeforecreate', Application.updateIcons)
.one('deviceready', Application.initApplication);
</script>
</html>