diff options
Diffstat (limited to 'projects/site.md')
-rw-r--r-- | projects/site.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/projects/site.md b/projects/site.md new file mode 100644 index 0000000..4f6ae85 --- /dev/null +++ b/projects/site.md @@ -0,0 +1,19 @@ +--- +title: Website +date: 2022-03-29 +--- + +# Overview + +This site used to be written using [Hugo][hugo], and written in Markdown. It's now +written in Rust, with content remaining in Markdown. I mostly chose to do this +so I could explore more of frontend development and especially the Rust web +ecosystem. + +[hugo]: https://gohugo.io + +# Architecture + +The Rust backend is hosted at +[muirrum/site](https://git.devcara.com/muirrum/site). It loads the markdown into +HTML and stores it in global state that's then passed to each handler. |