summaryrefslogtreecommitdiffhomepage
path: root/src/srp/index.gsp
blob: ae8e597d0311904de095d3b911db15e30e70c427 (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
html lang="en" {
	head { m4_include(head.gsp) }
	body {
		header {
			div {
				h1 {-Software-Related 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 {-
				In this section of the website I cover random software-related stuff
				that isn’t related to actual projects of mine.  Posts here could be
				about anything from a cool program I found, to a patch I wrote, to me
				complaining about bad software design.
			}

			p {-Posts:}

			ul {
				m4_article(gsp, {-Writing an HTML Preprocessor (feat. Tree-Sitter)})
				m4_article(fw-ec, {-Patching My Laptop’s Embedded Controller})
			}
		}

		hr{}

		footer { m4_footer }
	}
}