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

			figure .quote {
				blockquote {
					p {=
						Computers make it easier to do a lot of things, but most of the
						things they make it easier to do don’t need to be done.
					}
				}
				figcaption {-Andy Rooney}
			}
		}

		main {
			p {-
				In this section of the website I cover some of my projects.  Some are
				completed, some are ongoing; really I’ll just add a post here if I ever
				have something I feel is interesting enough to share.
			}

			p {-Posts:}
			ul {
				li {a href="totp"   {-totp — generate TOTP codes}}
				li {a href="mkpass" {-mkpass — make a password}}
				li {a href="mmv"    {-mmv, mpc — mapped file moves and -copies}}
			}
		}

		hr{}

		footer { m4_footer }
	}
}