bloggy

command module
v1.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 4, 2022 License: MIT Imports: 1 Imported by: 0

README

bloggy

A simple and stup*d static blog generator written in Go.

Status

Maintained by me.

Why

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.

Usage

First, download the release binary here.

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.

Styling

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 post
  • Body - body of the post
  • Path - path of the post

License

MIT

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
pkg

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL