{"id":18812892,"url":"https://github.com/facundoolano/jorge","last_synced_at":"2025-10-30T11:16:20.349Z","repository":{"id":222741981,"uuid":"755151221","full_name":"facundoolano/jorge","owner":"facundoolano","description":"A personal site generator with org-mode support","archived":false,"fork":false,"pushed_at":"2025-10-23T16:01:31.000Z","size":345,"stargazers_count":71,"open_issues_count":7,"forks_count":6,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-10-23T18:06:29.826Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://jorge.olano.dev/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/facundoolano.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-02-09T14:28:58.000Z","updated_at":"2025-10-23T16:01:32.000Z","dependencies_parsed_at":"2024-02-16T23:13:37.531Z","dependency_job_id":"83d652f5-5eb5-4d22-b627-87c4ae21637c","html_url":"https://github.com/facundoolano/jorge","commit_stats":null,"previous_names":["facundoolano/blorg","facundoolano/jorge"],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/facundoolano/jorge","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facundoolano%2Fjorge","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facundoolano%2Fjorge/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facundoolano%2Fjorge/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facundoolano%2Fjorge/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/facundoolano","download_url":"https://codeload.github.com/facundoolano/jorge/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/facundoolano%2Fjorge/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281074185,"owners_count":26439423,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-26T02:00:06.575Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T23:35:30.607Z","updated_at":"2025-10-30T11:16:20.344Z","avatar_url":"https://github.com/facundoolano.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# jorge\nA personal (small + opinionated) site generator with [org-mode](https://orgmode.org/) (and markdown) support.\n\n## Installation\nDownload the [latest release binary](https://github.com/facundoolano/jorge/releases/latest) for your platform, for example:\n\n    $ wget https://github.com/facundoolano/jorge/releases/latest/download/jorge-darwin-amd64  \\\n        -O jorge \u0026\u0026 chmod +x jorge \u0026\u0026 sudo mv jorge /usr/local/bin\n\nAlternatively, install with go (make sure that `$GOPATH/bin` is in your path):\n\n    $ go install github.com/facundoolano/jorge@latest\n\n\nArchLinux users can use an [AUR helper](https://wiki.archlinux.org/title/AUR_helpers), such as `yay`, to install `jorge` directly from [AUR](https://aur.archlinux.org/packages/jorge-git):\n\n    $ yay -S jorge\n\n## Example usage\n\nCreate a new website with `jorge init`:\n\n```bash\n$ jorge init myblog\nsite name: My Blog\nsite url: https://myblog.olano.dev\nauthor: Facundo Olano\nadded myblog/.gitignore\nadded myblog/includes/post_preview.html\nadded myblog/layouts/base.html\nadded myblog/layouts/default.html\nadded myblog/layouts/post.html\nadded myblog/src/assets/css/main.css\nadded myblog/src/blog/goodbye-markdown.md\nadded myblog/src/blog/hello-org.org\nadded myblog/src/blog/index.html\nadded myblog/src/blog/tags.html\nadded myblog/src/feed.xml\nadded myblog/src/index.html\n```\n\nThis initializes a new project with default configuration, styles and layouts, and a couple of sample posts.\n(You can, of course, use a different site structure or just skip the init command altogether).\n\nTo preview your site locally, use `jorge serve`:\n\n```bash\n$ cd myblog\n$ jorge serve\nwrote target/feed.xml\nwrote target/blog/goodbye-markdown/index.html\nwrote target/blog/my-first-post/index.html\nwrote target/blog/hello-org/index.html\nwrote target/blog/index.html\nwrote target/index.html\nwrote target/blog/tags/index.html\nserving at http://localhost:4001\n```\n\nThe site is renders the files found at `src/` in the `target/` directory.\nYou can add new pages by just adding files to `src/` but, for the common case of adding blog posts,\nthe `jorge post` creates files with the proper defaults:\n\n```\n$ jorge post \"My First Post\"\nadded src/blog/my-first-post.org\n$ cat src/blog/my-first-post.org\n---\ntitle: My First Post\ndate: 2024-02-21 13:39:59\nlayout: post\nlang: en\ntags: []\ndraft: true\n---\n#+OPTIONS: toc:nil num:nil\n#+LANGUAGE: en\n```\n\n(Posts are created as .org files by default, but you can chage it to prefer markdown or another text format).\n\nIf you still have `jorge serve` running, you can see the new post by browsing to `http://localhost:4001/blog/my-first-post`. You can then add some content and the browser tab will automatically refresh to reflect your changes:\n\n```bash\n$ cat \u003e\u003e src/blog/my-first-post.org \u003c\u003cEOF\n*** Hello world!\n\nthis is my *first* post.\nEOF\n```\n\nPosts created with `jorge post` are drafts by default. Remove the `draft: true` to mark it ready for publication:\n\n``` bash\n$ sed -i '' '/^draft: true$/d' src/blog/my-first-post.org\n```\n\nFinally, you can render a minified version of your site with `jorge build`:\n\n```\n$ jorge build\n  wrote target/index.html\n  wrote target/assets/css/main.css\n  wrote target/blog/hello/index.html\n  wrote target/blog/my-first-post/index.html\n  wrote target/feed.xml\n  wrote target/tags/index.html\n```\n\nAnd that's about it. For more details see the:\n\n  - [Tutorial](https://jorge.olano.dev#tutorial)\n  - [Development blog](https://jorge.olano.dev#devlog)\n\n## Built with jorge\n\n* [jorge docs](https://jorge.olano.dev/)\n* [olano.dev](https://olano.dev/)\n* [porracin.com](https://porracin.com/)\n\n\n## Acknowledgements\n\njorge started as a Go learning project and was largely inspired by [Jekyll](https://jekyllrb.com/). Most of the heavy lifting is done by external libraries:\n\n* [osteele/liquid](https://github.com/osteele/liquid) to render liquid templates. Some Jekyll-specific filters were copied from [osteele/gojekyll](https://github.com/osteele/gojekyll/).\n* [niklasfasching/go-org](https://github.com/niklasfasching/go-org) to render org-mode files as HTML.\n* [yuin/goldmark](https://github.com/yuin/goldmark) to render Markdown as HTML.\n* [go-yaml](https://github.com/go-yaml/yaml) to parse YAML files and template headers.\n* [tdewolff/minify](https://github.com/tdewolff/minify) to minify HTML, CSS, XML and JavaScript files.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffacundoolano%2Fjorge","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffacundoolano%2Fjorge","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffacundoolano%2Fjorge/lists"}