Add new collection in Jekyll
Environment: Windows 10, ruby 2.4, gem 2.7.6
새로운 collection을 추가하고자 할 때, _config.yml 파일 내 collection에 추가
(이 문서에서는 tag를 추가)
output 값은 collection 내 문서가 rendering 되는지 여부 permalink 값은 위의 인터넷 주소값
그리고 collection과 관련된 문서는 _
collection 내 문서들이 특정 layout으로 rendering 되게하려면, Front Matter 값을 설정해준다.
P.S. layout에서 개별 포스터의 title이나 date에 접근할 때, collection의 이름이 아닌 page로 접근한다.
(즉, tag 페이지에서도 tag.title이 아닌, page.title로 문서의 제목에 접근할 수 있다.)
Reference: (Jekyll Front Matter Defaults)[https://jekyllrb.com/docs/configuration/front-matter-defaults/], (Jekyll Collection)[https://jekyllrb.com/docs/collections/]