A personal blog built with Jekyll, featuring articles about software development, book reviews, and life experiences.
- Clean, modern design
- Responsive layout
- Category-based organization
- Social media integration
- SEO optimized
- Make sure you have Ruby installed (version 2.5.0 or higher)
- Install Jekyll and Bundler:
gem install jekyll bundler
- Clone this repository
- Install dependencies:
bundle install
- Start the development server:
bundle exec jekyll serve - Visit
http://localhost:4000in your browser
Posts are organized into three categories:
_software/- Technical articles and programming insights_books/- Book reviews and reading recommendations_life/- Personal experiences and reflections
To create a new post:
- Create a new markdown file in the appropriate category directory
- Add the required front matter:
--- layout: post title: "Your Post Title" date: YYYY-MM-DD ---
- Write your content in Markdown format
- Edit
_config.ymlto modify site settings - Modify
assets/css/main.cssto change the styling - Update
_layouts/default.htmlto modify the site structure
This project is open source and available under the MIT License.