Jekyll

Jekyll을 사용해 Github Page 만들기 - (2) Jekyll project 구조
jekyll theme의 코드를 그대로 가져왔기 때문에, 내 마음대로 수정하기 위해서는 jekyll project가 어떤 구조로 되어있는지 알아야 했다. https://suhwan.dev/2017/06/23/jekyll-project-structure/ 을 참고했는데, 전반적으로 비슷했지만 용어가 바뀌거나 한 부분이 있어 다시 정리한다. . ├── _config.yml ├── _includes ├── _layouts | ├── home.html | ├── post.html | └── search-base.html ├── _pages ├── _posts ├── _site ├── 404.html └── index.html 테마의 코드는 gemfile, lisence 파일을 제외하면 간략하게 위와 같은 구조를..