This repository contains the source code for the website of the “Programming 3 – Advanced” course offered by the Faculty of Mathematics and Information Science, Warsaw University of Technology (MiNI PW).
Website URL: https://csharp.mini.pw.edu.pl GitHub Pages Mirror: https://p3-mini.github.io/csharp-site
The site is built using Hugo, a static site generator. It includes hugo-book theme added as a git submodule. The site is automatically deployed on every push to the master branch.
This repository uses git submodules for its theme. To properly clone the repository with submodules, use the --recurse-submodules option:
git clone --recurse-submodules https://github.com/P3-MINI/csharp-site.gitIf you've already cloned the repository without --recurse-submodules, you can initialize the submodules manually:
git submodule update --init --recursiveTo run the website locally:
-
Navigate to the repository directory:
cd csharp-site -
Start the Hugo server:
hugo server
-
Open your browser and go to:
http://localhost:1313/
Changes will be reflected automatically in the browser as you modify the content.
If you're interested in contributing, please read the CONTRIBUTING.md file for guidelines and instructions.