소프트웨어

[github blog] jekyll hyde 테마 초기 설정하기

TaeGyeong Lee 2024. 1. 24. 16:22

공식 레포지토리에서 몇 가지를 수정해야 hyde 테마를 사용할 수 있습니다.

 

ruby 버전 확인

저는 3.2.2 입니다.

ruby 3.2.2

 

gem 설치

gem install jekyll jekyll-gist jekyll-sitemap jekyll-seo-tag

 

_config 수정

마크다운 종류 수정

# Dependencies
markdown: kramdown

 

jekyll-paginate 및 gist 플러그인 추가

plugins:
  - jekyll-paginate
  - jekyll-gist

 

url 수정해주세요, 자신이 사용할 깃허브 블로그 주소로 바꾸어 주어야 포스트가 정상적으로 출력됩니다. 

url: https://hanarotg.github.io

 

구동

아래 명령을 통해 localhost:4000에서 구동할 수 있습니다.

jekyll serve

 

참고자료

https://github.com/poole/poole#usage

 

GitHub - poole/poole: The Jekyll Butler. A no frills responsive Jekyll blog theme.

The Jekyll Butler. A no frills responsive Jekyll blog theme. - GitHub - poole/poole: The Jekyll Butler. A no frills responsive Jekyll blog theme.

github.com

https://github.com/poole/poole/issues/99

 

Compability with Jekyll 3? · Issue #99 · poole/poole

Hi, Is Poole compatible with Jekyll 3.0? (poole/lanyon#124) If not - any idea when this may be done? Thanks, Joacim

github.com

https://github.com/poole/poole/issues/191

 

Unknown tag 'gist' · Issue #191 · poole/poole

I just installed jekyll on Windows following this http://jekyll-windows.juthilo.com/ and then ran gem install jekyll jekyll-gist jekyll-sitemap jekyll-seo-tag which worked fine and then when I run ...

github.com