This repository was archived by the owner on Feb 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (98 loc) · 4.58 KB
/
index.html
File metadata and controls
101 lines (98 loc) · 4.58 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
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
<!doctype html>
<html lang = "en">
<head>
<meta charset = "utf-8">
<meta name="viewport" content="width=device-width maximum-scale=1.0">
<title>ChartBlocks | PHP UK Conference 2014</title>
<link href="stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
<link href="stylesheets/print.css" media="print" rel="stylesheet" type="text/css" />
<!--[if IE]>
<link href="/stylesheets/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
<![endif]-->
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico" />
<link href="stylesheets/error.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(".toggle-nav").click(function() {
$(".menu").toggleClass("nav-open");
});
});
</script>
</head>
<body>
<div class="header">
<div class="row">
<div class="logo">
<a href="http://app.chartblocks.com"></a>
</div>
<a class="toggle-nav">Nav Toggle</a>
<ul class="menu">
<li><a href="http://www.chartblocks.com">Website</a></li>
<li><a href="http://app.chartblocks.com">App</a></li>
<li><a href="http://www.chartblocks.com/support">Contact Us</a></li>
</ul>
</div>
</div>
<div class="main">
<div class="row">
<h1>PHP UK 2014 Statistics</h1>
<p>A shining example of using ChartBlocks to plot data from various sources.</p>
<p>See how we did it at <a href="https://github.com/ChartBlocks/phpuk14-scripts">https://github.com/ChartBlocks/phpuk14-scripts</a> and sign up for your own <a href="http://app.chartblocks.com/register">ChartBlocks account</a> to get started.</p>
</div>
<div class="row php"></div>
<div class="row stats">
<ul>
<li>
<h1>682</h1>
<h2>Attendees</h2>
</li>
<li>
<h1>41</h1>
<h2>Talks</h2>
</li>
<li>
<h1>31</h1>
<h2>Speakers</h2>
</li>
<li>
<h1>3</h1>
<h2>Socials</h2>
</li>
</ul>
</div>
<div class="row">
<h3>#phpuk14 tweets today</h3>
<iframe width="970" height="400" src="//embed.chartblocks.com/1.0/?c=53075ce2c9a61de101321575&t=81dc5bb6a3c1eca" frameBorder="0"></iframe>
</div>
<div class="row">
<h3>#phpuk14 tweets this week</h3>
<iframe width="970" height="400" src="//embed.chartblocks.com/1.0/?c=53036ac8c9a61da251321575&t=655fa36db773a6c" frameBorder="0"></iframe>
</div>
<div class="row">
<h3>#phpuk14 delegates by country</h3>
<iframe width="970" height="400" src="//embed.chartblocks.com/1.0/?c=53038362c9a61d3753321575&t=a94b137c185b9f7" frameBorder="0"></iframe>
</div>
<div class="row">
<h3>#phpuk14 check-in time</h3>
<iframe width="970" height="400" src="//embed.chartblocks.com/1.0/?c=530393c5c9a61dcc54321575&t=b1a64311267d8da" frameBorder="0"></iframe>
</div>
<div class="row">
<h3>#phpuk14 temperature</h3>
<iframe width="970" height="400" src="//embed.chartblocks.com/1.0/?c=530616f0c9a61dda70321575&t=56b069793a99c47" frameBorder="0"></iframe>
</div>
<div class="footer">
<div class="row">
<p class="copy">Copyright © 2014 <a href="http://www.chartblocks.com">ChartBlocks</a></p>
</div>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-2707233-4', 'chartblocks.com');
ga('send', 'pageview');
</script>
</body>
</html>