It's an honor, thank you for everything you have done for Orbiter

The site is being hosted on a digital ocean droplet.
In order to run the site locally, you will just need golang installed on your system:
https://go.dev/doc/installThen you can build the static site and serve it locally with the included test web server:
go run makesite.go
go run serve.go
Any files you place in the `/static` directory will automatically get served. I have added these to demo this:
http://jarmonik.org/test.jpghttp://jarmonik.org/foo.txt`content/_index.md` has all the content for the main home page.
`content/posts` has all the posts. You can create as many as you want. The top 5 show up on home page.
You can create as many markdown files under content directory and they show up as pages. One example is the about page created at jarmonik.org/about
You can modify the template files in `layout` folder to alter the look and feel of the site.
If you run into any issues, have any questions or need any help in customizing/personalizing the site please do let me know.
