diff options
| author | Benjamin Culkin <bjculkin@sitri.goetia> | 2023-10-26 00:13:49 +0000 |
|---|---|---|
| committer | Benjamin Culkin <bjculkin@sitri.goetia> | 2023-10-26 00:13:49 +0000 |
| commit | 1148df40528741b1e18ea0a64a6a6d5f2cb96bd2 (patch) | |
| tree | 33ab746b2c51166ac6113bb3b4ac6b6dc41db783 | |
Initial commit
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 10 | ||||
| -rw-r--r-- | entries/intro.ms | 8 | ||||
| -rw-r--r-- | index.ms | 11 |
4 files changed, 30 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e420ee4 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +target/* diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ecee8e4 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: site clean + +site: index.ms entries/intro.ms + mkdir -p target/ + mkdir -p target/entries + groff -Thtml -ms index.ms > target/index.html + groff -Thtml -ms entries/intro.ms > target/entries/intro.html + +clean: + rm -rf target/ diff --git a/entries/intro.ms b/entries/intro.ms new file mode 100644 index 0000000..81cec80 --- /dev/null +++ b/entries/intro.ms @@ -0,0 +1,8 @@ +.TL First Blog Entry +.AU Ben Culkin +.SH 1 +First Blog Entry +.PP +My first blog entry, eh? +For now, will probably just be periodic entries about projects I'm working on +and things I'm thinking about diff --git a/index.ms b/index.ms new file mode 100644 index 0000000..9392721 --- /dev/null +++ b/index.ms @@ -0,0 +1,11 @@ +.TL Website main page +.AU Ben Culkin +.PP +Welcome to my website. +There's not much here at the moment, but there will hopefully be some more stuff +soon. +For now, here's my blog. + +.SH 1 +Blog Entries + |
