diff options
author | sanine <sanine.not@pm.me> | 2022-01-13 17:41:02 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-01-13 17:41:02 -0600 |
commit | 0ff62ea7886bdeff160682d3d5713c2c8a6dd4b1 (patch) | |
tree | c70d31f35c1e54a7fc01246eb6740d79aef0ccd0 /site_root/about.lua |
initial commit
Diffstat (limited to 'site_root/about.lua')
-rw-r--r-- | site_root/about.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/site_root/about.lua b/site_root/about.lua new file mode 100644 index 0000000..ea832e1 --- /dev/null +++ b/site_root/about.lua @@ -0,0 +1,17 @@ +local md = [[ +about me +======== + +hey! i'm kate (aka sanine) and i like to write code, hack circuits, and grow plants. +i mostly use this site for documenting and sharing various projects. +i also (very occasionally) make games!! you can see them [over on itch.io](https://sanine.itch.io/). + +if you need to get in contact with me, you can send me an email at `kate AT sanine DOT net`. +i hope you're having a good day. <3 +]] + +return { + title='about me', + layout='base', + markdown=md, +} |