Currently WIP.
We need Node.js
to run the scripts generating static sites.
Firstly, install requirements.
npm i
Then, put your articles into the articles
folder, then generate the static sites:
# at project root directory.
npm run build
The pages will be generated at the docs
folder (GitHub pages seems only supports delivering root dir or /docs
!),
you can serve them locally for debugging with your favorite web server.
As an example, the following instruction shows how to start a simple server with python's http.server
:
# This will serve the content at http://localhost:9000
python3 -m http.server --directory docs/ 9000
- Pagination.
- CLI for adding tags / intro texts.
- Archive by month.