personal blog,using jekyll-bootstrap,powered by github page
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.
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
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.