-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·72 lines (65 loc) · 2.78 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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Feedr @ GA</title>
<link rel="stylesheet" href="styles/normalize.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="styles/html5bp.css" media="screen" charset="utf-8">
<link rel="stylesheet" href="styles/style.css" media="screen" charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header>
<section class="container">
<a href="#"><h1>Feedr</h1></a>
<nav>
<ul>
<li><a href="#">News Source: <span class="sourceName"></span></a>
<ul>
<li><a href="#" class="dataSource" id="guardian">The Guardian</a></li>
<li><a href="#" class="dataSource" id="nytimes">The New York</a></li>
<li><a href="#" class="dataSource" id="techcrunch">TechCrunch</a></li>
<li><a href="#" class="dataSource" id="theverge">The Verge</a></li>
</ul>
</li>
</ul>
<section id="search">
<input type="text" name="name" value="">
<a href="#"><img src="images/search.png" alt="" /></a>
</section>
</nav>
<div class="clearfix"></div>
</section>
</header>
<div id="popUp" class="loader hidden">
<a href="#" class="closePopUp">X</a>
<div class="container">
<h1></h1>
<p>
Article description/content here.
</p>
<a href="#" class="popUpAction" target="_blank">Read more from source</a>
</div>
</div>
<div id="popUp" class="loader hidden">
<a href="#" class="closePopUp">X</a>
<div class="container">
<h1>Article title here</h1>
<p>
Article description/content here.
</p>
<a href="#" class="popUpAction" target="_blank">Read more from source</a>
</div>
</div>
<section id="main" class="container">
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.11.3.min.js"><\/script>')</script>
<script src="js/app.js"></script>
</body>
</html>