-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
104 lines (90 loc) · 4.67 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes" />
<title>Aleksandar Aki Rodić</title>
<meta name="description" content="Aleksandar Aki Rodić is an artist, designer and software engineer. He uses computer graphics and the art of programming to create new experiences on the web." />
<meta name="keywords" content="portfolio, webgl, visual effects, new media, art, design, engineering, web development" />
<meta itemprop="name" content="Aleksandar Aki Rodić" />
<meta itemprop="description" content="Aleksandar Aki Rodić is an artist, designer and software engineer." />
<link rel="author" content="Aleksandar Aki Rodić" href="https://github.com/arodic" />
<link rel="me" content="Aleksandar Aki Rodić" href="http://akirodic.com" />
<link rel="me" href="https://mastodon.gamedev.place/@aki" />
<!-- Web application enable -->
<link rel="manifest" href="./manifest.json" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- Web application name -->
<meta name="application-name" content="Aleksandar Aki Rodić" />
<meta name="apple-mobile-web-app-title" content="Aleksandar Aki Rodić" />
<!-- Browser UI color -->
<meta name="theme-color" content="#f5f5f5" />
<meta name="msapplication-TileColor" content="#f5f5f5" />
<meta name="apple-mobile-web-app-status-bar-style" content="#f5f5f5" />
<!-- Home screen icons -->
<link rel="shortcut icon" href="./favicon.ico" />
<meta itemprop="image" content="/images/logo/io-512.png" />
<meta name="msapplication-TileImage" content="/images/logo/io-144-precomposed.png" />
<link rel="apple-touch-icon" sizes="144x144" href="/images/logo/io-144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/images/logo/io-152.png">
<!-- Other icons -->
<link rel="icon" type="image/png" sizes="512x512" href="/images/logo/io-512.png" />
<link rel="icon" type="image/png" sizes="192x192" href="/images/logo/io-192.png" />
<link rel="icon" type="image/png" sizes="96x96" href="/images/logo/io-96.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/images/logo/io-32-alt.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/images/logo/io-16.png" />
<link rel="apple-touch-icon" href="/images/logo/io-152.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/images/logo/io-72.png">
<!-- Social sharing data -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="arodic" />
<meta name="twitter:title" content="Aleksandar Aki Rodić" />
<meta name="twitter:creator" content="arodic" />
<meta name="twitter:domain" content="akirodic.com" />
<meta name="twitter:image" content="/images/logo/io-192.png" />
<meta property="og:title" content="Aleksandar Aki Rodić" />
<meta property="og:type" content="website" />
<meta property="og:image" content="/images/logo/io-192.png" />
<meta property="og:site_name" content="Aleksandar Aki Rodić" />
<meta property="og:description" content="Aleksandar Aki Rodić" />
<meta property="og:locale" content="en_US" />
<link lazyload href="https://fonts.googleapis.com/css?family=Open+Sans:300,400&display=swap|Roboto+Mono&display=swap" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-148217203-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-148217203-1');
</script>
<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://unpkg.com/es-module-shims@1.6.0/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"io-gui": "./node_modules/io-gui/build/iogui.js",
"marked": "./node_modules/io-gui/node_modules/marked/lib/marked.esm.js",
"dompurify": "./node_modules/io-gui/node_modules/dompurify/dist/purify.es.js"
}
}
</script>
<style>
html, body {
font: 16px 'Open Sans', Helvetica, Arial, sans-serif;
font-display: swap;
padding: 0;
margin: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
</style>
<script type="module" src="./build/index.js"></script>
</head>
<body>
<noscript>JavaScript is required to view this page!</noscript>
<io-main-page></io-main-page>
</body>
</html>