summaryrefslogtreecommitdiffhomepage
path: root/src/index.html
blob: a70eb083151d71cc51ee9894c5ef08d030d87b9b (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">
	<head>
		m4_include(head.html)
    </head>
    <body>
		<header>
			<h1>Root Page</h1>

			<figure class="quote">
				<blockquote>
					<p>If Java had true garbage collection, most programs would
						delete themselves upon execution.</p>
				</blockquote>
				<figcaption>
					Robert Sewell
				</figcaption>
			</figure>
		</header>

		<main>
			<p>
				Welcome to my plot of the internet.  This site is mostly oriented
				towards topics related to software development, but you might
				eventually find some things that are completely unrelated as
				well.  The “source code” for the site (if you can call
				<abbr class="html">HTML</abbr><x-ref>1</x-ref> and a basic build
				system source code)
				<a href="https://git.thomasvoss.com/www.thomasvoss.com"
				   target="_blank">
					are available through git</a>.
			</p>

			<aside>
				<p data-ref="1">
					This site doesn’t even have any JavaScript.
					There truly is no code.
				</p>
			</aside>

			<p>
				Now go branch off to a subsection of the site:
			</p>

			<ul>
				<li><a href="prj">My Projects</a></li>
				<li><a href="srp">Software-Related Posts</a></li>
				<li><a href="www">Other Websites</a></li>
				<li><a href="ame">About Me</a></li>
			</ul>
		</main>

		<hr>
		
		<footer>
			<small>
				m4_footer
			</small>
		</footer>
	</body>
</html>