-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview.html.erb
64 lines (64 loc) · 1.73 KB
/
view.html.erb
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
<!DOCTYPE html>
<html>
<head>
<title>
Is Toomer's Corner Being Rolled Right Now?
</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta property="og:image"
content="https://istoomerscornerbeingrolledrightnow.github.io/assets/toomersAtNight.jpg" />
<style>
html{text-align: center;}
h1{font-size:7em;}
.wrapper{ position: absolute;
top: 15px;
width:100%;
margin:auto;}
small, small a {color:#ccc;}
</style>
</head>
<body>
<div class="wrapper">
<div class="question">
<small>
<a href="https://istoomerscornerbeingrolledrightnow.github.io/">
Is Toomer's Corner Being Rolled Right Now?
</a>
</small>
</div>
<div class="response">
<h1>
<%= tweet.response %>
</h1>
</div>
<% unless tweet.is_stale? %>
<div class="embeded-tweet">
<%= tweet.html %>
</div>
<% end %>
<div class="website-link">
<small>
<a href="https://istoomerscornerbeingrolledrightnow.github.io/">
https://istoomerscornerbeingrolledrightnow.github.io/
</a>
</small>
</div>
<div>
<small>
<a href="https://twitter.com/IsToomersRolled">
@IsToomersRolled
</a>
|
<a href="/api/">
API
</a>
|
<a href="http://www.auburnalabama.org/mvc/cams/City-Cameras/Toomer%27s-Corner">
Live Video Feed
</a>
</small>
</div>
</div>
</body>
</html>