summaryrefslogtreecommitdiffhomepage
path: root/src/index.gsp
blob: e233602f872ae3656a0443bc8f83d6abf6693018 (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
html lang="en" {
	head { HEAD }
	body {
		header {
			h1 {-Root Page}

			figure .quote {
				blockquote {
					p {=
						If Java had true garbage collection, most programs would delete
						themselves upon execution.
					}
				}
				figcaption {-Robert Sewell}
			}
		}

		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 (markup and a Makefile)
				@a
					href="https://git.thomasvoss.com/www.thomasvoss.com"
					target="_blank"
				{-are available through git}.
			}

			ul {
				li {a href="me"   {-About Me}}
				li {a href="blog" {-Blog Posts}}
				li {a href="www"  {-Other Websites}}
			}

			footer { FOOT }
		}
	}
}