Personal blog and portfolio site for adgk2349, built with Jekyll + Chirpy and deployed on GitHub Pages.
- Live site: https://adgk2349.github.io
- Theme base: https://github.com/cotes2020/jekyll-theme-chirpy
This repository contains:
- Dev blog posts (
_posts) - Static pages (
_tabs) - Site configuration (
_config.yml) - GitHub Actions workflow for build and deploy (
.github/workflows/pages-deploy.yml)
- Jekyll (Ruby 3.3)
- Chirpy theme
- GitHub Pages
- Giscus comments
- Ruby 3.3
- Bundler
bundle install
bundle exec jekyll s --livereloadThen open:
bundle exec jekyll b
bundle exec htmlproofer _site --disable-externalCreate a markdown file under _posts:
_posts/YYYY-MM-DD-title.md
Use front matter like:
---
title: "Post Title"
date: 2026-03-09 10:00:00 +0900
categories: [Dev, Notes]
tags: [jekyll, chirpy]
---Push to main and GitHub Actions builds/deploys the site automatically.
Workflow file:
.github/workflows/pages-deploy.yml
Note:
- Changes to
README.md,LICENSE, and.gitignoreare ignored by deploy trigger.
_posts: blog posts_tabs: static menu pagesassets: images/fonts/static assets_config.yml: site metadata and behavior_site: generated output
This repository is distributed under the MIT License. See LICENSE for details.