A simple and stup*d static blog generator written in Go.
Maintained by me.
I wanted to create a simple blog generator that is easy to use. I prefer static sites because it's cheap to host and maintain. It also reduce security risks for your server.
First, download the release binary here.
You can also build it yourself if you have Go installed:
$ go install github.com/yusufmalikul/bloggy@latest
Then you need to prepare your blog posts content. Layouts directory must have index.html
and post.html
see (examples). Put your markdown files e.g. in posts
directory.
$ tree myblog
myblog
βββ layouts
β βββ index.html
β βββ post.html
βββ posts
βββ hello-world.md
βββ second-post.md
Run this command to generate markdown files to your designated output directory.
$ bloggy --content myblog/posts --layouts myblog/layouts --output myblog/html
Generating...
Done in 952.06Β΅s
It will generate html files in myblog/html
directory.
$ tree myblog
myblog
βββ html
β βββ hello-world
β β βββ index.html
β βββ index.html
β βββ second-post
β βββ index.html
βββ layouts
β βββ index.html
β βββ post.html
βββ posts
βββ hello-world.md
βββ second-post.md
After that, you can start bloggy as a server.
$ bloggy server --dir myblog/html
Listening...
Visit http://localhost:8080
Visit http://localhost:8080 to see your blog. You can also deploy the static files (myblog/html
) to your server.
You can style your blog by editing index.html
and post.html
in layouts
directory. Bloggy uses Go's template. The available variables are:
Title
- title of the postBody
- body of the postPath
- path of the post
MIT