jekyll을 사용한 블로그 작성

jekyll을 사용한 블로그 작성

arammoon
Veritas Liberabit Vos, Tech Blog

이전에 jekyll로 페이지를 생성하고, gitpage에 올릴 수 있었는데 언제 부터 인지 data만 올리면 github에서 이 기능을 지원해준다

1. 준비

jekyll 설치

$ gem install bundler jekyll

2. 프로젝트 생성

$ jekyll new [mysite] ex> $ jekyll new arammoon.github.io

3. 프로젝트 실행

$ cd arammoon.github.io
$ bundle exec jekyll serve with drafts $ bundle exec jekyll serve —drafts

Liquid

Veritas Liberabit Vos