mirror of
https://github.com/facundoolano/jorge.git
synced 2024-11-16 07:47:40 +01:00
.github/workflows | ||
commands | ||
config | ||
site | ||
templates | ||
.gitignore | ||
go.mod | ||
go.sum | ||
LICENSE | ||
main.go | ||
README.md |
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: