-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
132 lines (100 loc) · 4.25 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile viewport optimized: j.mp/bplateviewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Place favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<!-- CSS : implied media="all" -->
<link rel="stylesheet" href="c/style.css">
</head>
<body>
<div id="container">
<header>
<h1>Articlr</h1>
</header>
<div id="main">
<form action="" id="startForm">
<fieldset>
<label for="tags">Tags</label>
<textarea name="tags" id="tags"></textarea>
</fieldset>
<input type="submit" name="submit" value="submit" />
</form>
<div id="contentHolder">
<ul>
<li class="left"><a href="" id="startAgain">Start again</a></li>
<li class="right"><a href="" id="pause">Pause</a></li>
</ul>
<div id="content" class="clear"></div>
</div>
</div>
<footer>
</footer>
<!-- Holder for js template text/html hides it from view -->
<script type="text/html" id="tweets-tpl">
{{#context}}
{{#tweets}}
<div class="tweet media">
<a class="star" href="" data-id="{{.id}}">fav</a>
<a href="http://twitter.com/#!/{{user}}" class="img avatar"><img src="{{photo}}" /></a>
<div class="bd">
<h3><a href="http://twitter.com/#!/{{user}}">{{user}}</a></h3>
<p>{{message}}</p>
<p class="location">Location: {{location}}</p>
<cite><a href="http://twitter.com/#!/{{user}}/status/{{id}}">{{date}}</a></cite>
</div>
</div>
{{/tweets}}
{{/context}}
</script>
<!-- Holder for js template text/html hides it from view -->
<script type="text/html" id="flickr-tpl">
{{#query}}
{{#reults}}
{{#photo}}
<img src='http://farm{{farm}}.static.flickr.com/{{server}}/{{id}}_{{secret}}.jpg' alt='{{title}}' />
{{/photo}}
{{/results}}
{{/query}}
</script>
</div> <!--! end of #container -->
<!-- Javascript at the bottom for fast page loading -->
<!--<script src="j/zepto/zepto.js"></script>
<script src="j/zepto/ajax.js"></script>-->
<!-- Grab Google CDN's jQuery. fall back to local if necessary -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="j/jquery-1.5.js"%3E%3C/script%3E'))</script>
<script src="j/mustache.js"></script>
<script src="http://isithackday.com/hacks/geo/yql-geo-library/yqlgeo.js"></script>
<!-- scripts concatenated and minified via ant build script-->
<script src="j/plugins.js"></script>
<script src="j/app.js"></script>
<!-- end concatenated and minified scripts-->
<!-- asynchronous google analytics: mathiasbynens.be/notes/async-analytics-snippet
change the UA-XXXXX-X to be your site's ID -->
<script>
var _gaq = [['_setAccount', 'UA-XXXXX-X'], ['_trackPageview']];
(function(d, t) {
var g = d.createElement(t),
s = d.getElementsByTagName(t)[0];
g.async = true;
g.src = ('https:' == location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
s.parentNode.insertBefore(g, s);
})(document, 'script');
</script>
</body>
</html>