I am working on a Comic Site project based on https://github.com/chrisanthropic/comical-jekyll-theme.
I am lookin for a way to display: comic->subcomics->episode->.jpg files
.
Currently the theme supports only viewing of episode->.jpg files
.
Tree Structure defined:
- Firstly I created a folder called '_category' at the root of the site.
- Created 3 new folder 'main-comic-1' 'main-comic-2' 'main-comic-3'.
- Under each main-comic folder there will be 'sub-comic-1' 'sub-comic-2' folders.
- Under each sub-comic folder there will be 'episode-1' episode-2' folders.
- These episode folder will have respective .html files to display the
comic images in grid view.
Requirement:
need to display like this:
root/ └── _category/ ├── main-comic-1 │ ├── sub-comic-1 │ │ ├── episode-1 │ │ └── episode-2 │ ├── sub-comic-2 │ ├── episode-1 │ └── episode-2 ├── main-comic-2 │ ├── sub-comic-1 │ │ ├── episode-1 │ │ └── episode-2
Help:
Which files do i need to edit / add new to acheive a category, sub-category, episode page view based on the number of folders present in '_category'