summaryrefslogtreecommitdiffhomepage
path: root/src/blog/index.gsp
blob: fce8d08838fd27a2cf181a9721e34652f5a0ccae (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
html lang="en" {
	head { m4_include(head.gsp) }
	body {
		header {
			div {
				h1 {-Blog Posts}
				m4_include(nav.gsp)
			}

			figure .quote {
				blockquote {
					p {=
						Object-oriented programming is an exceptionally bad idea which could
						only have originated in California.
					}
				}
				figcaption {-Edsgar W. Dijkstra}
			}
		}

		main {
			p {-
				On this section of the site you will find my blog.  Most of what I post
				here is related to software-development and -design, although maybe
				you’ll find something unrelated on here too.
			}

			p {-Posts:}

			ul {
				m4_article(grab, {-Making Grep Better})
				m4_article(andy-val, {-Values in Andy})
				m4_article(new-sh, {-Making a New Shell})
				m4_article(extend, {-Extensible Scripting})
				m4_article(nvim-ts, {-Hacking with Tree-Sitter on Neovim})
				m4_article(gsp, {-Writing an m4_abbr(HTML) Preprocessor (feat. Tree-Sitter)})
				m4_article(fw-ec, {-Patching My Laptop’s Embedded Controller})
			}
		}

		hr{}

		footer { m4_footer }
	}
}