Find a file
2024-02-15 21:54:24 -03:00
commands fix comment 2024-02-15 20:33:19 -03:00
site naive implementation of post excerpts 2024-02-15 18:11:40 -03:00
templates preserve order in group by filter 2024-02-15 21:54:24 -03:00
.gitignore Initial commit 2024-02-09 11:28:59 -03:00
go.mod preserve order in group by filter 2024-02-15 21:54:24 -03:00
go.sum preserve order in group by filter 2024-02-15 21:54:24 -03:00
LICENSE Initial commit 2024-02-09 11:28:59 -03:00
main.go support passing a different root dir 2024-02-15 12:38:51 -03:00
README.md Update README.md 2024-02-15 20:30:13 -03:00

blorg

A presonal (small + opinionated) site generator with org-mode support.

(NOTE: this is stil a WIP, the doc below is a wishlist, not the current behavior.)

Install from binary:

$ wget https://github.com/facundoolano/blorg/releases/download/latest/blorg-$(uname -m) \
    -o blorg && chmod +x blorg

Or install with go:

$ go install github.com/facundoolano/blorg

Usage:

$ blorg init myblog
  site name: My Blog
  author: Facundo

  added myblog/README.md
  added myblog/.gitignore
  added myblog/config.yml
  added myblog/layouts/base.html
  added myblog/layouts/post.html
  added myblog/src/index.html
  added myblog/assets/css/main.css
  added myblog/src/blog/hello.org
  added myblog/src/feed.xml
  added myblog/src/tags.html
$ cd myblog
$ blorg post "My First Post"
  added src/blog/my-first-post.org
$ blorg serve &
  server running at http://localhost:4001/
$ cat >> src/blog/test.org <<EOF
  # Hello world!

  this is my *first* post.
  EOF
$ open http://localhost:4001/blog/my-first-post
$ blorg pub
  drafts:
    1. blog/my-first-post.org
  choose file to publish: 1
$ blorg build
  added target/index.html
  added target/assets/css/main.css
  added target/blog/hello.html
  added target/blog/my-first-post.html
  added target/feed.xml
  added target/tags.html

For more details see the: