-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
185 lines (163 loc) · 8.78 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>EffectNode | Flow Based Programming for JS Creative Coding</title>
<link rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/styles/monokai-sublime.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/highlight.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script defer src="https://www.googletagmanager.com/gtag/js?id=UA-46835141-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-46835141-6');
</script>
<link rel="icon" type="image/png" sizes="32x32" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/favicon-16x16.png">
<!--[if IE]><link rel="shortcut icon" href="/static/img/icons/favicon.ico"><![endif]-->
<!-- Add to home screen for Android and modern mobile browsers -->
<link rel="manifest" href="<%= htmlWebpackPlugin.files.publicPath %>static/manifest.json">
<meta name="theme-color" content="#4DBA87">
<!-- Pinterest domain verifty -->
<meta name="p:domain_verify" content="9ec925a9e8c04afea813358bfbf21898"/>
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- <script async src="https://www.googletagmanager.com/gtag/js?id=UA-46835141-6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-46835141-6');
</script>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5WFF9W2');</script> -->
<!-- Add to home screen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="effect-node">
<link rel="apple-touch-icon" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/apple-touch-icon-152x152.png">
<link rel="mask-icon" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/safari-pinned-tab.svg" color="#4DBA87">
<!-- Add to home screen for Windows -->
<meta name="msapplication-TileImage" content="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/msapplication-icon-144x144.png">
<meta name="msapplication-TileColor" content="#000000">
<% for (var chunk of webpack.chunks) {
for (var file of chunk.files) {
if (file.match(/\.(js|css)$/)) { %>
<link rel="<%= chunk.initial?'preload':'prefetch' %>" href="<%= htmlWebpackPlugin.files.publicPath + file %>" as="<%= file.match(/\.css$/)?'style':'script' %>"><% }}} %>
<style>
html, body, #app, #aapp,
.logo-container{
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
}
.logo-container {
display: flex;
justify-content: center;
align-items: center;
}
.logo-container svg {
max-width: 80vw;
max-height: 50vh;
animation: zoom-back-in 1s ease-in 0s 1 normal both;
}
@keyframes zoom-back-in {
0% {
transform: scale(1.3);
}
100% {
transform: scale(1.0);
}
}
</style>
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '705843569830135');
fbq('track', 'PageView');
</script>
</head>
<body>
<!-- not so legit but kinda works -->
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5WFF9W2"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<noscript>
Please enable JavaScript.
</noscript>
<div id="app">
<div class="logo-container">
<svg width="581px" height="361px" viewBox="0 0 581 361" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Generator: Sketch 47.1 (45422) - http://www.bohemiancoding.com/sketch -->
<desc>Created with Sketch.</desc>
<defs></defs>
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="Final-Outline" transform="translate(-205.000000, -332.000000)">
<g id="Group" transform="translate(205.000000, 335.000000)">
<polygon id="E" fill="#000000" points="178.979545 291.75 173.439772 323 0.712499619 323 51.138636 32.0909091 221.735227 32.0909091 216.195454 63.3409091 80.2579542 63.3409091 63.0704542 161.636364 184.945454 161.636364 179.547727 192.886364 57.8147723 192.886364 40.6272723 291.75"></polygon>
<circle id="Oval-Copy-3" stroke="#000000" stroke-width="5" cx="211" cy="45" r="45"></circle>
<circle id="Oval-Copy-5" stroke="#000000" stroke-width="5" cx="170" cy="310" r="45"></circle>
<polygon id="N" fill="#000000" points="551.985227 32.0909091 501.417045 323 469.314772 323 360.65 95.1590909 357.667045 95.0170455 317.326136 323 282.951136 323 333.377272 32.0909091 365.621591 32.0909091 474.570454 261.068182 477.695454 261.210227 518.036363 32.0909091"></polygon>
<circle id="Oval-Copy" stroke="#000000" stroke-width="5" cx="303" cy="310" r="45"></circle>
<circle id="Oval-Copy-2" stroke="#000000" stroke-width="5" cx="533" cy="45" r="45"></circle>
</g>
</g>
</g>
</svg>
</div>
</div>
<!-- Todo: only include in production -->
<%= htmlWebpackPlugin.options.serviceWorkerLoader %>
<!-- built files will be auto injected -->
<!-- <script src="/static/js/app/Hive.js"></script> -->
<!-- Start of Async Drift Code -->
<script>
// "use strict";
// !function() {
// var t = window.driftt = window.drift = window.driftt || [];
// if (!t.init) {
// if (t.invoked) return void (window.console && console.error && console.error("Drift snippet included twice."));
// t.invoked = !0, t.methods = [ "identify", "config", "track", "reset", "debug", "show", "ping", "page", "hide", "off", "on" ],
// t.factory = function(e) {
// return function() {
// var n = Array.prototype.slice.call(arguments);
// return n.unshift(e), t.push(n), t;
// };
// }, t.methods.forEach(function(e) {
// t[e] = t.factory(e);
// }), t.load = function(t) {
// var e = 3e5, n = Math.ceil(new Date() / e) * e, o = document.createElement("script");
// o.type = "text/javascript", o.async = !0, o.crossorigin = "anonymous", o.src = "https://js.driftt.com/include/" + n + "/" + t + ".js";
// var i = document.getElementsByTagName("script")[0];
// i.parentNode.insertBefore(o, i);
// };
// }
// }();
// drift.SNIPPET_VERSION = '0.3.1';
// drift.load('4exxy9vb5vxy');
</script>
<!-- not so legit but kinda works -->
<!-- End of Async Drift Code -->
<!-- Facebook Pixel Code -->
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=705843569830135&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
<script src="https://d2tiekx4vc5w8q.cloudfront.net/Content/pv/sitebug.js" data-id="157508" data-pos="bottom-right" data-url="2019/websites/features-design/technical-achievement" data-display-rank="0" id="webby-pv-bug"></script>
<!-- <script src="https://d2tiekx4vc5w8q.cloudfront.net/Content/pv/roadblock.js" data-id="157508" data-url="2019/websites/features-design/technical-achievement" data-display-rank="0" data-category="Technical Achievement" id="webby-pv-roadblock"></script> -->
</body>
</html>