This is a real post
Here’s a post to demo some features of this site builder.
This is a block quote
Here’s some images:
A big heading
Some italics and bolds
You can even demo code if you want:
func main() {
http.HandleFunc("/healthcheck", healthCheck)
http.HandleFunc("/message", message)
log.Print("starting server at port 8080")
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal(err.Error())
}
}