Post

Transform Your Website with the Chirpy Jekyll Theme: A Step-by-Step Guide to Customization and Deployment on GitHub Pages

Transform Your Website with the Chirpy Jekyll Theme: A Step-by-Step Guide to Customization and Deployment on GitHub Pages

Jekyll is a powerful static site generator that, when combined with GitHub Pages, allows you to easily host and manage blogs and websites. If you want a clean, minimalist, and customizable theme, the Chirpy Jekyll theme is an excellent choice. This theme customization is not much to configure and you can get this theme in this repository. This theme project is developed by talented developers especially with knowledge of Ruby ​​and also Jekyll. In this guide, we’ll walk you through the steps to customize the Chirpy theme and deploy it on GitHub Pages.

So lets break down the different components:

  • Ruby is a dynamic, object-oriented programming language known for its simplicity and readability. It is often used for web development, particularly with the Ruby on Rails framework.

  • Gems are pre-packaged libraries or modules in Ruby that add functionality to applications. They can be easily installed and managed using the RubyGems package manager, enabling developers to quickly integrate features without having to reinvent the wheel.

  • Jekyll is a static site generator that transforms plain text into beautiful static websites and blogs, and is the foundation of our “blog-as-code” approach. Turning the markdown files we use to write articles, into webpages like you’re reading now.

  • Chirpy an awesome text-focused theme for Jekyll created by Cotes Chung. Or more specifically his amazing Chirpy Starter template that automates the creation and updates of our site going forward using GitHub Actions our first foray into CI/CD using GitHub.

  • Github Pages and an underlying Github repo will be use to store and host everything related to our site.

Step-by-Step Guide

Setting Up the Environment

Before you start, ensure Ruby, Bundler, and Jekyll are installed. Use the following commands to install dependencies

1
2
sudo apt-get install ruby-full build-essential zlib1g-dev
gem install jekyll bundler

Set up environment variables to manage Ruby gems efficiently

1
2
3
4
echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

Select your option to get started

This approach simplifies upgrades, isolates unnecessary files, and is perfect for users who want to focus on writing with minimal configuration.

  1. Sign in to GitHub and navigate to the chirpy-starter
  2. Click the Use this template button and then select Create a new repository
  3. Name the new repository <username>.github.io, replacing username with your lowercase GitHub username

Forking the Theme

This approach is convenient for modifying features or UI design, but presents challenges during upgrades. So don’t try this unless you are familiar with Jekyll and plan to heavily modify this theme.

  1. Sign in to GitHub.
  2. Fork the theme repository.
  3. Name the new repository <username>.github.io, replacing username with your lowercase GitHub username.

Installing dependencies of chirpy-starter

This requires some GEM’s to be installed before it can be used. On your local development machine, Once you’ve set up the repository, run bundle in the root directory to install all necessary dependencies

1
bundle

Running the Site Locally

To verify the site looks good locally, use the following command:

1
bundle exec jekyll serve

Configure

Now it’s time to make the site your own. Modify the _config.yml file to set the language, title, tagline, social links, and more. Don’t forget to replace the default favicon in the assets/img/favicons/ directory with your own, using a tool like Real Real Favicon Generator

Configuration file table data

There are several configuration files that we can modify to make changes to the site.

FileDetails
/_config.ymlThe main configuration file for our Chirpy theme’d Jekyll site
/_data/contact.ymlManages the contact options displayed at the bottom of the sidebar
/_data/share.ymlManages what platforms visitors can share our articles to
/_postsManage your posts with the file format YYYY-MM-DD-TITLE.EXTENSION note that the EXTENSION must be one of md and markdown
/_tabsContains the menu configuration file in the sidebar
/assets/img/faviconsCustomize the Favicon

Configuring the _config.yaml

These are the things you can change

KeyDetails
langThe language of your site (e.g., en, es)
timezoneYour local timezone
titleThe title of your site
taglineIt will display as the subtitle
descriptionUsed by seo meta and the atom feed
urlThe base URL of your site (e.g., https://yourdomain.com).
avatarThe URL of your profile picture
authorYour name or pen name
socialSocial media links and names for them

Configuring the Favicon

The Favicons of Chirpy are placed in the directory assets/img/favicons/ You may want to replace them with your own. The following sections will guide you to create and replace the default favicons and If your Jekyll site doesn’t have this assets/img/favicons/ directory yet, Just create one.

To make this whole process easier we are going to use this handy tool Real Favicon Generator to create all the required files.

Real Favicon Generator Create your Favicons using Real Favicon Generator

  1. Click Pick your favicon image to upload your image
  2. Scroll to the bottom of the page and click Next
  3. Click Download to download the generated favicons
  4. Extract the contents of the download, and remove the following files
    • browserconfig.xml
    • site.webmanifest
  5. Upload the remaining files to our GitHub repo to replace the original files in the direcotry assets/img/favicons/

Configure to Deploy the Website

To deploy the website, enable GitHub Pages in the repository settings. GitHub Actions will automatically build your site and host it for free.

Enable Github Pages

The Github Action so Jekyll can automatically generate the static site content that Github Pages will then present our visitors.

  1. Open our Github Repo Settings
  2. Select Pages from the settings page
  3. Change the Build and Deploy Source to Github Actions

Now when we commit changes to our repository, the Github Action will automatically run and re-generate our site content. If the action fails for any reason you can check out the logs under the Actions tab in your Github repository.

Commit and push changes

After we have made changes and configured files here and there, It is time to publish the changes to the repository so that the changes can be accessed by the public. Run the following command and make sure you are authenticated.

This command will display what we have changed.

1
git status

Add all the changes that have been made

1
git add --all

Make a commit

1
git commit -m "Initial commit"

Execution of changes

1
git push -u origin {BRANCH_NAME}

Conclusion

By following these simple steps, you can easily set up, customize, and deploy a stylish Jekyll site with the Chirpy theme. Whether you’re building a blog or a personal website, Chirpy offers a clean and efficient way to get online.

This post is licensed under CC BY 4.0 by the author.