Overview:
This article discusses the process of creating a personal website using Jekyll-Bootstrap. It provides instructions on how to set up the website, create posts in both English and Chinese, and utilize the pre-existing blog theme available in the repository.
Features:
- Easy Setup: The article provides step-by-step instructions on setting up a personal website using Jekyll-Bootstrap.
- Multilingual Support: Users can create posts with titles in Chinese, which will automatically be converted to Pinyin.
- Local Preview: The article explains how to run Jekyll and browse the website locally at http://localhost:4000.
- Theme Selection: The repository includes a separate branch specifically for themes, allowing users to easily apply a pre-existing blog theme.
Installation:
Install Jekyll-Bootstrap if not already installed:
$ gem install jekyll-bootstrap
Create a new post with a Chinese title:
$ rake post title="新建Post"
The Chinese title will automatically be converted to Pinyin.
Run Jekyll to preview the website locally:
$ bundle exec jekyll serve -w
The local preview can be accessed at http://localhost:4000.
To use a blog theme from the repository, switch to the theme branch:
$ git checkout theme
Summary:
This article provides a helpful guide on creating a personal website using Jekyll-Bootstrap. It highlights features such as easy setup, multilingual support, local preview, and theme selection. Users can follow the step-by-step instructions to install Jekyll-Bootstrap, create posts with Chinese titles, run Jekyll for local preview, and apply a pre-existing blog theme from the repository.