-
Notifications
You must be signed in to change notification settings - Fork 358
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (51 loc) · 1.57 KB
/
index.html
File metadata and controls
58 lines (51 loc) · 1.57 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
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8' />
<title>cssarrowplease</title>
<link rel="stylesheet" type="text/css" href="css/app.css" />
<style>
.with-arrow {
position: relative;
width: 386px;
padding: 40px 20px;
text-align: center;
color: rgba(0, 0, 0, 0.4);
font-size: 20px;
font-weight: bold;
margin: 40px auto;
border-radius: 5px;
}
</style>
</head>
<body>
<div class='app'></div>
<script src='js/vendor/react-with-addons.js'></script>
<script src='js/cssarrowplease.js'></script>
<script>
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30519406-1']);
_gaq.push(['_trackPageview']);
(function() {
var defer = (function (document, script) {
var urls = [],
firstScript = document.getElementsByTagName(script)[0];
return function (url, callback) {
var inc;
if (url && urls.indexOf(url) === -1) {
inc = document.createElement(script);
inc.async = true;
inc.src = url;
inc.onload = callback || function () {};
firstScript.parentNode.insertBefore(inc, firstScript);
}
}
}(document, 'script'));
window.onload = function () {
defer(('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js');
defer('//platform.twitter.com/widgets.js');
};
})();
</script>
</body>
</html>