https://github.com/chewzzz1014/jekyll
https://github.com/chewzzz1014/jekyll
jekyll learning
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/chewzzz1014/jekyll
- Owner: chewzzz1014
- Created: 2022-11-05T06:25:46.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-11T05:44:58.000Z (over 2 years ago)
- Last Synced: 2025-01-26T20:17:24.537Z (5 months ago)
- Topics: jekyll, learning
- Language: HTML
- Homepage:
- Size: 6.69 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Overview
- Learning jekyll, a static site generator
- Pre: Install ruby and gem on my device. Then install `jekyll` package using gem (package manager for Ruby)## Create a new jekyll website
```
jekyll new [blog name]
```## To serve on local host
- Command for running for the first time.```
bundle exec jekyll serve
```- 2nd time of running and above
```
jekyll serve
```## To show draft on website too
- Build website for post and website
```
jekyll serve --draft
```## Use other theme
1. Search for theme
2. Put in Gemfile```
gem "package-name-here"
```
3. Use command```
bundle install
```
4. Change theme in _config.yml
5. Rerun server using```
bundle exec jekyll serve
```