-
Notifications
You must be signed in to change notification settings - Fork 0
/
tweets.html
69 lines (51 loc) · 1.62 KB
/
tweets.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
<head>
<title>tweets</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
</head>
<body>
<div class="container-narrow">
{{> heading}}
{{> main}}
{{> setup}}
</div> <!-- /container -->
</body>
<template name="setup"></template>
<template name="heading">
<div class="masthead">
<ul class="nav nav-pills pull-right">
<!-- <li class="active"><a href="#">Home</a></li> //-->
<li><a href="https://twitter.com/guidohoermann">@guidohoermann</a></li>
</ul>
<h3 class="muted">Tweet Finder</h3>
</div>
<hr>
<div class="jumbotron">
<div class="hidden-phone">
<h2>Super awesome Tweet finder!</h2>
<p class="lead">Just enter the search term and get realtime updates</p>
</div>
<form class="form-search">
<input type="text" id="iField" class="input-large search-query">
<button type="submit" id="submit" class="btn btn-large btn-success">Search</button>
</form>
<!-- <a class="btn btn-large btn-success" href="#">Run</a> -->
</div>
<hr>
</template>
<template name="main">
<div class="row-fluid marketing">
<div class="span12 lead">
<h3 id="startResult">Results {{latestRefresh}} for <span id="red">{{search}}</span></h3>
<ul class="unstyled" >
{{#each tweets}}
<li class="header1">{{user}} {{{userlink}}} at {{stamp}}</li>
<li class="content1">{{{text}}}</li>
{{/each}}
</ul>
</div>
</div>
<hr>
<div class="footer">
<p>© Guido Hoermann 2013</p>
</div>
</template>