Find a file
2024-02-20 18:20:13 -03:00
.github/workflows Release action (#8) 2024-02-19 21:58:52 -03:00
commands Add live reload to build command (#7) 2024-02-19 18:03:06 -03:00
config Add live reload to build command (#7) 2024-02-19 18:03:06 -03:00
site Add live reload to build command (#7) 2024-02-19 18:03:06 -03:00
templates add a keys filter to make liquid iteration of maps predictable 2024-02-18 12:14:44 -03:00
.gitignore Initial commit 2024-02-09 11:28:59 -03:00
go.mod rename project to jorge (#4) 2024-02-16 15:29:43 -03:00
go.sum add minifier 2024-02-16 15:14:30 -03:00
LICENSE Initial commit 2024-02-09 11:28:59 -03:00
main.go Init command and default assets (#5) 2024-02-17 17:09:19 -03:00
README.md Update README.md 2024-02-20 18:20:13 -03:00

jorge

A personal (small + opinionated) site generator with org-mode (and markdown) support.

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

Installation

Download the latest release binary for your platform, for example:

$ wget https://github.com/facundoolano/jorge/releases/latest/download/jorge-darwin-amd64  \
    -O jorge && chmod +x jorge && mv jorge /usr/local/bin

Alternatively, install with go:

$ go install github.com/facundoolano/jorge@latest

Usage

$ jorge init myblog
> site name: My Blog
> author: Facundo Olano
> url: https://myblog.olano.dev

  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
$ jorge post "My First Post"
  added draft src/blog/my-first-post.org

# serve the site locally with live reload
$ jorge serve
  server running at http://localhost:4001/

# browse to the new post
$ open http://localhost:4001/blog/my-first-post

# add some content
$ cat >> src/blog/test.org <<EOF
*** Hello world!

this is my *first* post.
EOF

# remove the draft flag before publishing
$ sed -i '/^draft: true$/d' src/blog/my-first-post.org

$ jorge build
  wrote target/index.html
  wrote target/assets/css/main.css
  wrote target/blog/hello.html
  wrote target/blog/my-first-post.html
  wrote target/feed.xml
  wrote target/tags.html

For more details see the: