summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Willis <lukejw@loquat.dev>2025-07-05 03:41:11 -0400
committerLuke Willis <lukejw@loquat.dev>2025-07-05 03:41:11 -0400
commitff1834a2bc580c484602d71eafb8f2363fa674f3 (patch)
treefe047cca0a473c4f213e988c652e1d341a952277
Set up basic site
-rw-r--r--.gitignore1
-rw-r--r--grug.scm6
-rw-r--r--pages/about.md4
-rw-r--r--posts/setup.md14
4 files changed, 25 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..1320f90
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+site
diff --git a/grug.scm b/grug.scm
new file mode 100644
index 0000000..5029807
--- /dev/null
+++ b/grug.scm
@@ -0,0 +1,6 @@
+(use-modules (grug site)
+ (grug builders))
+
+(site #:metadata `((title . "Luke Willis"))
+ #:builders (list (simple-pages "pages")
+ (blog "posts")))
diff --git a/pages/about.md b/pages/about.md
new file mode 100644
index 0000000..07aaac1
--- /dev/null
+++ b/pages/about.md
@@ -0,0 +1,4 @@
+`((title . "About Me"))
+My name is Luke Willis. I'm an Eastern Orthodox Christian interested in theology and programming.
+
+Christ is in our midst!
diff --git a/posts/setup.md b/posts/setup.md
new file mode 100644
index 0000000..9ec2278
--- /dev/null
+++ b/posts/setup.md
@@ -0,0 +1,14 @@
+`((title . "The Blog Returns... Again") (date . "2025-07-05") (description . "I have once again rebooted my blog."))
+Hello again, world. I have rebuilt my blog for the third time.
+
+This time, it's using my own static site generator. It's called
+[grug](https://git.loquat.dev/grug). The site itself is still hosted on my
+[OpenBSD](https://www.openbsd.org/) VPS, which is hosted by
+[OpenBSD Amsterdam](https://openbsd.amsterdam/). You can see the source for the blog
+[here](https://git.loquat.dev/blog). I'll write more details about the change in another post.
+I actually do have several ideas for topics to write about this time around. If you're one of
+the few people who check my website, thank you for sticking with me.
+
+In Christ,
+
+Luke