-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.11 KB
/
index.html
File metadata and controls
46 lines (43 loc) · 1.11 KB
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
---
title: Home
---
<script>
var a = ["laimi's ", "iterally ", "n ", "nfinitely ", "utating ",
"nitialism"];
var i, j, p, e;
i = j = p = 0;
function r() {
"use strict";
var s = e.textContent || e.innerText;
p += 1;
s = s.substr(0,p) + a[i].charAt(j) + s.substr(p);
j += 1;
if (j >= a[i].length) {
j = 0;
i += 1;
p += 1;
if (i >= a.length) {
i = p = 0;
}
}
e.textContent = e.innerText = s;
setTimeout(r, p ? j ? 50 : 100 : 2000);
}
</script>
<span id="abbr">plaimi</span><script>
e = document.getElementById("abbr");
setTimeout(r, 0);
</script><noscript>'s literally an infinitely mutating
initialism</noscript>
<h2>News</h2>
$partial("templates/news-list.html")$
<h2>Works</h2>
$partial("templates/work-list.html")$
<h2>Games</h2>
$partial("templates/game-list.html")$
<h2>Papers</h2>
$partial("templates/paper-list.html")$
<h2>Presentations</h2>
$partial("templates/presentation-list.html")$
<h2>Other</h2>
$partial("templates/other-list.html")$