A simple Jekyll blog for sharing thoughts, projects, and internship experiences.
- Install Ruby and Bundler
- Install dependencies:
bundle install
- Run the development server:
bundle exec jekyll serve - Visit
http://localhost:4000
_config.yml- Jekyll configuration_layouts/- Page templates_includes/- Reusable components (header, nav, footer)_posts/- Blog posts_internship_2025/- 2025 internship weekly updatesassets/- CSS, images, and other static files
Create a file in _posts/ with format YYYY-MM-DD-title.md:
---
layout: post
title: "My Post Title"
date: 2026-06-02
---
Post content here...Create a file in _internship_2025/ with format weekN.md:
---
title: Week N
week: N
slug: weekN
photos:
- /assets/images/weekN_1.jpg
---
Week content here...