summaryrefslogtreecommitdiffhomepage
path: root/src/index.gsp
blob: b9fa5a4f91d3f2940c69bed2278d12687a45c6d3 (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
html lang="en" {
	head { m4_include(head.gsp) }
	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 (if you can call m4_abbr(HTML) @x-ref{-1} and a basic
				build system source code)
				@a
					href="https://git.thomasvoss.com/www.thomasvoss.com"
					target="_blank"
				{-are available through git}.
			}

			aside {
				p data-ref="1" {-
					The site is actually written in my own m4_abbr(GSP) language, but it
					transpiles into m4_abbr(HTML).  Also, this site doesn’t even have any
					JavaScript.  There truly is no code.
				}
			}

			p {-
				Now go branch off to a subsection of the site:
			}

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

			hr{}

			footer { m4_footer }
		}
	}
}