Personal blog built with Bootstrap, powered by Jekyll and freely hosted in Github pages. This is a personal website hosted on GitHub Pages using the static site generator Jekyll. The site uses GitHub Issues to serve comments on the pages.
- Install Jekyll on your local machine by following the instructions here.
- Clone this repository to your local machine using
git clone https://github.com/USERNAME/REPO.git
. - Navigate to the root directory of the repository using
cd REPO
. - Run
bundle install
to install any necessary dependencies. - Run
bundle exec jekyll serve
to start the local server. - Open your web browser and navigate to
http://localhost:4000
to view the site.
This repository uses GitHub Actions to handle the build and deployment of the website on push to the main
branch. Any push to the main
branch will trigger a build and deployment of the website.
PRs are welcome! If you have any suggestions or changes you would like to make to the website, please submit a PR.
- Fork this repository to your own GitHub account.
- Clone the forked repository to your local machine using
git clone https://github.com/YOUR-USERNAME/REPO.git
. - Create a new branch using
git checkout -b my-new-branch
. - Make your changes and commit them using
git commit -am "Description of changes"
. - Push your changes to your forked repository using
git push origin my-new-branch
. - Submit a PR from your forked repository to the original repository.