-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (68 loc) · 2.16 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="src/assets/img/favicon.ico" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta
name="description"
content="Pragmatic perfectionist dabbling in a wide variety of tech and other things."
/>
<meta name="author" content="Erlend G. Ekern" />
<meta name="robots" content="index,follow" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="theme-color" content="#000000" />
<!-- Facebook tags -->
<meta property="og:url" content="https://www.ekern.me" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Erlend G. Ekern" />
<meta
property="og:description"
content="Pragmatic perfectionist dabbling in a wide variety of tech and other things."
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<script type="module" src="src/main.js"></script>
<link rel="stylesheet" href="src/style.css" />
<title>Erlend G. Ekern</title>
<!-- Google Analytics -->
<script>
window.ga =
window.ga ||
function () {
;(ga.q = ga.q || []).push(arguments)
}
ga.l = +new Date()
ga('create', 'UA-91518212-1', 'auto')
ga('send', 'pageview')
</script>
<script async src="https://www.google-analytics.com/analytics.js"></script>
<!-- End Google Analytics -->
</head>
<body>
<div id="main">
<div id="menubar">
<div id="menubar__buttons">
<div></div>
<div></div>
<div></div>
</div>
<h1>ekern.me</h1>
</div>
<div id="tabs">
<a class="active" href="#">home</a>
<a href="https://blog.ekern.me">blog</a>
</div>
<div id="terminal">
<noscript>
<p>This website requires JavaScript ...</p>
<span class="cursor"></span>
</noscript>
</div>
</div>
</body>
</html>