From af7863ab2e80d37ee39aaafe8a3d5b78ef1afba6 Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Sat, 9 Aug 2025 17:38:40 +0200 Subject: [PATCH 1/2] README: document jekyll serve --future arg For blog posts with a date in the future --future is needed for it to show with jekyll serve. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0ec943c7..eb2e4533 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,10 @@ This is the source repository for [termux.github.io](https://termux.github.io) a Install dependencies as explained at [Using Jekyll with Pages](https://help.github.com/articles/using-jekyll-with-pages/), then run ``` -bundle exec jekyll serve +bundle exec jekyll serve --future ``` -to start a local server at http://localhost:4000. +to start a local server at http://localhost:4000. `--future` is needed to show posts with dates in the future. If [`_config.yml`] file was updated, then stop server with `ctrl + c` and start it again for changes to take effect. ## @@ -87,4 +87,4 @@ Post Content ## -[termux.dev]: https://termux.dev \ No newline at end of file +[termux.dev]: https://termux.dev From c514e866e93e5fbf860c3e579ca4e56bac1847b4 Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Sat, 9 Aug 2025 17:44:32 +0200 Subject: [PATCH 2/2] README: document that there are submodules And how to get them. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index eb2e4533..6671a64c 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,13 @@ This is the source repository for [termux.github.io](https://termux.github.io) a ## Run locally -Install dependencies as explained at [Using Jekyll with Pages](https://help.github.com/articles/using-jekyll-with-pages/), then run +Get the git submodules with: + +``` +git submodule update --init +``` + +And then install dependencies as explained at [Using Jekyll with Pages](https://help.github.com/articles/using-jekyll-with-pages/), and finally run ``` bundle exec jekyll serve --future