-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
63 lines (55 loc) · 2.57 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
<html ng-app="agg">
<head>
<title>News Agg</title>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="./style.css">
<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="wrapper">
<div class="navigation">
<ul>
<li id='header'><a>P E R S N E W S A G G</a></li>
<li style="float: right"><a ui-sref="userAccount">S A M P U T H</a></li>
</ul>
</div>
<!-- Navigation Bar| APP Title| Username -->
<h1><center>P E R S</center></h1>
<i class="glyphicon glyphicon-plus-sign col-md-" id="addSubReddit">Add Subreddit</i>
<i class="glyphicon glyphicon-plus-sign col-md-" id="addNpr">Add NPR Feed</i>
<i class="glyphicon glyphicon-plus-sign col-md-" id="addRss">Add Other RSS Feed</i>
<div class="panel" id="addSubReddit">
<form><input type="text" placeholder="Enter subreddit" id="addSubReddit" required></input>
<button class="addSource" id="addSubReddit">Add Source</button></form>
</div>
<div class="panel" id="addNpr">
<form><input type="text" placeholder="Enter NPR Program" required></input>
<button class="addSource" id="addNpr">Add Source</button></form>
</div>
<div class="panel" id="addRss">
<form><input type="text" placeholder="Enter URL" required pattern="https?://.+"></input>
<button class="addSource" id="addRss">Add Source</button></form>
</div>
<div class="container">
<span class="following row span10">
<h3>Your Followings</h3>
<div id="followings"></div>
</span>
<!-- <div class="tweet">
<h1>Twitter</h1>
</div> -->
<iframe id="articleFrame" src="./iframe.html" name="iframe_a"></iframe>
<!-- change src to redirect iframe view -->
</div>
<!-- Your Page -->
<!-- <span class="pages span4"><h3>Your Pages</h3></div> -->
<!-- libraries -->
<script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script>
<!-- <script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.min.js"></script> -->
<script src="basicApp.js"></script>
<!-- <script src="twit.js"></script> -->
<!-- <script src="./app/app.js"></script> -->
</div>
</body>