This is my personal website built with Jekyll. It's designed for easy updates through markdown files.
Edit resume.md in the root directory to update your resume. The file uses markdown formatting, so you can easily update:
- Education
- Skills
- Experience
- Projects
To add a new blog post:
- Create a new markdown file in the
_postsdirectory - Name it with the format:
YYYY-MM-DD-title-of-post.md - Add the front matter at the top of the file:
--- layout: default title: "Your Post Title" date: YYYY-MM-DD ---
- Write your post content in markdown below the front matter
Edit index.md in the root directory to update your introduction and personal information.
To run the site locally:
jekyll serve --watch --livereload.
├── _config.yml # Site configuration
├── _layouts/ # HTML templates
├── _posts/ # Blog posts (add new .md files here)
├── index.md # Homepage/About Me
├── resume.md # Resume
└── blog.md # Blog listing page