-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
64 lines (61 loc) · 1.81 KB
/
template.html
File metadata and controls
64 lines (61 loc) · 1.81 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
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello World! - Workshop B</title>
<style type="text/css">
* { border:0; padding:0; font-weight:normal;}
body {
font-family:Helvetica, "Helvetica Neue", Arial, Verdana;
font-size:1.0em;
background:url(/static/images/tech-summit.png) no-repeat top center #2d3235;
color:#fff;
}
h1 {
font-size:1.2em;
margin:60px 0 0 0;
}
</style>
</head>
<body>
<article>
<header>
<h1>Workshop B - Hello World!</h1>
</header>
<section>
<p>Keep up to date with the buzz...</p>
<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
<script type="text/javascript">
new TWTR.Widget({
version: 2,
type: 'search',
search: '#RFTech',
interval: 30000,
title: 'Razorfish',
subject: 'Tech Summit 2012 #RFTech',
width: 'auto',
height: 200,
theme: {
shell: {
background: '#bf5330',
color: '#fac524'
},
tweets: {
background: '#ffffff',
color: '#444444',
links: '#1985b5'
}
},
features: {
scrollbar: true,
loop: true,
live: true,
behavior: 'default'
}
}).render().start();
</script>
</section>
<footer>
</footer>
</article>
</body>
</html>