-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (46 loc) · 1.7 KB
/
Copy pathindex.html
File metadata and controls
51 lines (46 loc) · 1.7 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>IFeedle</title>
<link rel="stylesheet" href="build.css"/>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" src="build.js"></script>
<script type="text/javascript" >
$(function () {
var feedsParam = getURLParameter("feeds");
if (feedsParam) {
feeds = $.parseJSON(feedsParam);
} else {
initDefault();
}
initDashboard();
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45365709-1', 'ifeedle.com');
ga('send', 'pageview');
</script>
<script>
var sharebutton_is_horizontal = true;
document.write('<script src="//cdn.script.to/share2.js"></scr' + 'ipt>');
document.write("<div style='display: none'>");
</script>
<a href="http://www.ifeedle.com/">share button html</a>
<script>document.write("</div>");</script>
</head>
<body>
<div class="top">
<input type="text" placeholder="Type a term or enter a feed URL" id="feedUrl" size="60"/>
<button class="btn" id="addFeed">
Add Feed
</button>
<a id="siteLink" target="_blank" href="http://www.ifeedle.com/about.html">IFeedle</a>
</div>
<div class="columns">
</div>
</body>
</html>