hexo 테마 설치

Hexo 테마 설치하기

hexo을 설치할시 기본적으로 landscape 테마가 설치 되어있습니다.
hueman 테마를 설치할 예정입니다.
Demo site : https://blog.zhangruipeng.me/hexo-theme-hueman
Github : https://github.com/ppoffice/hexo-theme-hueman

서브모듈을 이용해서 설치하기

$ git clone https://github.com/ppoffice/hexo-theme-hueman.git themes/hueman
다른 블로그를 확인해보면 대부분 이렇게 설치를 합니다.
하지만 테마파일이 깃허브에 올라가지 않는 오류가 있었습니다.

해결방법은 다음과 같습니다.
$ git submodule add https://github.com/ppoffice/hexo-theme-hueman.git themes/hueman
혹은
$ git clone https://github.com/ppoffice/hexo-theme-hueman.git
클론 내부 파일을 잘라내기로 가져오는 방법이 있습니다.

테마설치가 끝나면 hueman 테마에서 사용하는 내부 검색 플로그인을 설치 합니다.
$ npm install -S hexo-generator-json-content

기본 환경설정

루트폴더에있는 hexo 환경설정파일 _config.yml 에서 Theme: landscape을 hueman 으로 수정합니다
theme: hueman

hueman테마 환경설정 파일

themes/hueman 폴더안의 _config.yml.example이라는 파일이 있습니다.
파일이름을 _config.yml 로 변경합니다.

Share