forked from openknowledgebe/twitterwall
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
107 lines (74 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Conference Twitter Wall</title>
<link rel="stylesheet" type="text/css" href="app/screen.css">
<!-- make your customisations to the twitter wall using the custom.css -->
<link rel="stylesheet" type="text/css" href="custom.css">
</head>
<body class="hflex-wrapper">
<div class="vflex-wrapper50">
<div id="logo">
<span id="logo_text_large">Apps for Ghent </span>
<span id="logo_text_small">#hackdebib</span>
</div>
<div id="schedule">
<!-- style the schedule as you please -->
<div id="lunch" data-time="1200">
<p>Next: 12:00</p><h3>Lunch Deelnemers</h3>
</div>
<div id="labs" data-time="1230">
<p>Next: 12:30</p>
<h3>Privacy Café</h3>
<h3>Pop-up Nerdlab Space</h3>
</div>
<div id="endhackathon" data-time="1500">
<p>Next: 15:00</p><h3>Einde Hackathon</h3>
</div>
<div id="pitches" data-time="1110">
<p>Next: 15:30</p><h3>Start Pitch Sessies</h3><p>Achilles Muschezaal</p>
</div>
<div id="datatalks" data-time="1730">
<p>Next: 17:30</p><h3>Data Talks</h3><p>Achilles Muschezaal</p>
</div>
<div id="receptie" data-time="1800">
<p>Next: 18:00</p><h3>Start Receptie</h3>
</div>
<div id="prize" data-time="1830">
<p>Next: 18:30</p><h3>Prijsuitreiking</h3>
</div>
</div>
<div id="notices">
<!-- here you create divs that are shown on a rotation, add fullscreen class, and customise the hold time with data-hold-time="3s" -->
<div id="notice3" data-hold-time="3s" class="fullscreen">
<img src="./images/openbelgium_big.png"/>
</div>
</div>
</div>
<div id="twitterwall">
<ul id="tweets"></ul>
</div>
<script type="text/html" id="tweet_template">
<li id="<%=id%>">
<div class="tweet">
<div class="vcard">
<a href="http://twitter.com/<%=screen_name%>" class="url"><img style="height: 48px; width: 48px;" alt="@<%=screen_name%>" class="photo fn" height="48" src="<%=profile_image_url%>" width="48" /></a>
</div>
<div class="hentry">
<strong><a href="http://twitter.com/<%=screen_name%>" title="<%=name%>"><%=screen_name%></a></strong>
<span class="entry-content"><%=tweet%></span>
<span class="meta entry-meta"><a href="http://twitter.com/<%=screen_name%>/status/<%=id%>" class="entry-date" rel="bookmark"><span class="published" title="<%=created_at%>"><%=nice_date%></span></a></span>
</div>
<% if (embeds.length) for (var i = 0; i < embeds.length; i++) { %>
<%=embeds[i]%>
<% } %>
</div>
</li>
</script>
<script src="config.js"></script>
<script src="app/js/twitterlib.js"></script>
<script src="app/js/jquery.min.js"></script>
<script src="app/js/app.js"></script>
</body>
</html>