-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwiki.html
79 lines (73 loc) · 2.42 KB
/
wiki.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</meta>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<link rel="stylesheet" href="/custom.css">
<link rel="icon" type="image/svg" href="/assets/logo.svg">
<title>Wiki - Miller Hall</title>
<meta name="description" content="A wiki of things I’m interested
in">
</meta>
<meta name="author" content="Miller Arlindo Hall ([email protected])">
</meta>
<meta name="viewport" content="width=device-width, initial-scale=1">
</meta>
</head>
<body>
<header>
<h1>Miller Hall</h1>
<nav>
<a href="/">home</a>
<a href="/wiki.html">wiki</a>
<a href="/posts.html">posts</a>
<a href="https://twitter.com/arlindohall">twitter</a>
</nav>
</header>
<main>
<!--
Indentation is messed up here because pandoc indents code blocks
if they are indented with the content.
-->
<h1 id="wiki">Wiki</h1>
<p>This is a wiki of things I’m interested, be it computer things
that I know about, courses I’ve taken, or even just shiny things I
found on the ground.</p>
<h2 id="index">Index</h2>
<p>Some links to my favorite wiki pages:</p>
<ul>
<li><a href="/wiki/books.html">Books I’ve read and maybe
liked</a></li>
<li><a href="/wiki/courses.html">Courses I probably still haven’t
finished</a></li>
<li><a href="/wiki/rails.html">Ruby on Rails stuff</a></li>
<li><a href="/wiki/productivity.html">Productivity hacks</a></li>
<li><a href="/wiki/projects.html">Stuff I’ve built</a></li>
</ul>
</main>
<footer>
<img class="index-personal-logo" title="Personal logo" alt="Personal website logo, a monogram of MAH, my initials"
style="height: 40px;" src="/assets/logo.svg">
</img>
<p>Page source on GitHub:
(<a href="https://github.com/arlindohall/arlindohall.github.io/blob/mainline/wiki.html">html</a>,
<a href="https://github.com/arlindohall/arlindohall.github.io/blob/mainline/_root/wiki.md">md</a>)
</p>
</footer>
</body>
<script>
window.addEventListener('DOMContentLoaded', () => {
let headers = document.querySelectorAll("h1,h2,h3,h4");
for (let h of headers) {
let content = h.textContent;
let id = '#' + h.id;
let a = document.createElement('a');
a.setAttribute('href', id);
a.textContent = content;
h.textContent = '';
h.appendChild(a);
}
});
</script>
</html>