61 lines
1.9 KiB
HTML
61 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>UI Stuff</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, max-scale=1">
|
|
|
|
<!-- 3rd party CSS -->
|
|
<link rel="stylesheet" href="/css/normalize.css">
|
|
<!-- Fix IE -->
|
|
<!--[if lt IE 9]>
|
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7/html5shiv.js"></script>
|
|
<script src="http://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js"></script>
|
|
<![endif]-->
|
|
|
|
<!-- syntax highlighting CSS -->
|
|
<link rel="stylesheet" href="/css/syntax.css">
|
|
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="/css/main.css">
|
|
|
|
<!-- RSS Feed -->
|
|
<link href='/feed.xml' rel='alternate' type='application/atom+xml'>
|
|
|
|
<!-- Web Fonts -->
|
|
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,400italics,300,300italics,200' rel='stylesheet' type='text/css'>
|
|
|
|
<!-- Icon Fonts -->
|
|
<link rel="stylesheet" href="/css/ionicons.min.css">
|
|
|
|
<!-- Favicon -->
|
|
<link rel="shortcut icon" href="/favicon.png" />
|
|
|
|
<!-- Scripts -->
|
|
<script src="/js/AnimationFrame.min.js"></script>
|
|
<script async src="/js/magic.js"></script>
|
|
|
|
<!-- Google Analytics -->
|
|
<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-39880341-1', 'auto');
|
|
ga('send', 'pageview');
|
|
|
|
</script>
|
|
<!-- End Google Analytics -->
|
|
</head>
|
|
<body>
|
|
<canvas id="magic"></canvas>
|
|
</body>
|
|
<script>
|
|
window.onload = function () {
|
|
new Stuff().draw();
|
|
}
|
|
</script>
|
|
</html>
|