For the theme, and basic layout, we're using the Docster theme with the Jekyll framework.
Currently, you can see a live version hosted at https://codeforaotearoa.github.io
Assuming you have Ruby installed, you'll need to go ahead and install the Jekyll gem if you don't already have it, like so:
gem install jekyllOnce that's done, you can serve the site:
jekyll servewhich will run it on localhost:4000 by default.
If you want to build the site, run
jekyll buildwhich will output static files to a folder called docs. The output can be changed in config.yml and is only called docs because that's what Github Pages is serving from.
If you want to add some changes, you can obtain a copy of the repo using Github. If you're not someone who has used Git heavily, the option to download a .zip file exists under the Clone or download button.
You can see the layout by checking the markdown pages in the _entries folder to see some examples of how hierarchy and text formatting works.
If you're unable to submit a pull request with your changes, feel free to email any altered markdown files to [email protected] and we'll manually add them.
Otherwise, if you're familiar with Git, just submit a pull request and we'll have a look.