Modifying this site
The site lives on a GitHub repository.
To update the site, you will need to pull this repository to your local computer either using the command line or an IDE (e.g., PyCharm).
From there, you need the mkdocs
package to build and deploy the updated files to GitHub pages. All pages are written in Markdown, with hints of HTML here and there where needed.
-
Pull remote repository from GitHub
-
Make a change.
-
Commit the change.
-
Repeat the previous two steps until all changes are complete.
-
Push to remote repository on GitHub
-
From command prompt:
mkdocs build
to build the site locally -
From command prompt:
mkdocs gh-deploy
to publish the site to GitHub pages.