Hugo Content Management [1] - Contents Path
Hugo가 어떻게 각각에 컨텐츠에 접근하고, 폴더를 조직화하여 블로그를 구성하는지 알아보자. 컨텐츠 구성 (root) └── content └── project | └── index.md // <- https://example.com/project/ ├── posts | ├── firstpost.md // <- https://example.com/posts/firstpost/ | └── secondpost.md // <- https://example.com/posts/secondpost/ └── study ├── first.md // <- https://example.com/study/first/ └── second.md // <- https://example.com/study/second/ 위 처럼 각각 project, posts, study 총 3개의 카테고리가 있다고 가정할 때, Hugo는 section, slug, path, url의 변수들을 이용해 컨텐츠를 관리한다....