-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (38 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet/less" type="text/css" href="styles/baseStyles.less" />
<title>Alex Bigelow</title>
<meta property="og:title" content="Alex Bigelow" />
<meta property="og:image" content="img/landscapePreview.png" />
<meta
property="og:description"
content="My personal site... plus a toy graph data editor. Let me know if you need something like this for real!"
/>
<meta property="og:url" content="//alex-r-bigelow.github.io" />
<script
type="text/javascript"
src="node_modules/less/dist/less.min.js"
data-log-level="1"
></script>
<script
type="text/javascript"
src="node_modules/d3/dist/d3.min.js"
></script>
<script type="module" src="node_modules/uki/dist/uki.esm.js"></script>
<script
type="module"
src="node_modules/@ukijs/ui/dist/uki-ui.esm.js"
></script>
<script type="module">
import LandingController from './controllers/LandingController/LandingController.js';
window.controller = new LandingController();
</script>
</head>
<body>
<h1>Alex Bigelow</h1>
<p>I build stuff like this:</p>
<div class="NetworkDecorator"></div>
</body>
</html>