This is the source code for my personal website, JohnathanIrvin.com.
The website is a static site built using the Hugo static site generator and the Hugo Coder theme.
If you have Hugo installed locally, you can start the development server to test changes:
hugo server -D --ignoreCache --minifyThen open http://localhost:1313 in your browser.
Build the site into a container image:
docker build -t johnathanirvin-site .Run the built site locally on port 8080:
docker run --rm -p 8080:80 johnathanirvin-siteThen open http://localhost:8080 to test the generated site.
This project is licensed under the MIT License - see the LICENSE file for details.
Personally, I do not know what you would want to do with this code, but if you do, feel free to use it.
- Hugo for the blazing fast static site generator.
- Hugo Coder Theme for the minimalist theme.