Hugo Static Site sources for the book website
Because of the theme, the site automatically works well on phones as well as computers and tablets.
Everything is in markdown so it's very easy to add/edit content. If you look at the "content" subdirectory you'll see how straightforward it is to add new pages.
-
Install the Hugo static site generator.
-
Clone this repository into your "git" subdirectory.
-
From within this repository, run
hugo server
and open your browser at the URL given. -
To create the deployable version, run
hugo
from within this repository. You should now see apublic
directory, which contains the deployable file set. -
To duplicate what happens during an actual deploy, first clone AtomicKotlin.github.io into your "git" subdirectory. Now run
python deploy.py
from within this subdirectory.