This is a beginner-friendly walkthrough for setting up a new
webcomic site and getting familiar with the different files to plug
in your own comics, step by step.
comicaltemplate/
├── assets/
│ ├── comicaltemplate.engine.js -- The rendering engine (JavaScript)
│ ├── icons.sprite.svg ----------- Navigation arrows sprites
│ ├── PepperCarrot.font.woff2 ---- Some custom font
│ └── style.css ------------------ Page stylesheet (CSS)
├── comics/
│ ├── char_carrot.webp ----------- A character portrait (for the about page)
│ ├── char_pepper.webp
│ ├── page_0001.thumbnail.webp --- Thumbnail for the first comic page
│ ├── page_0001.webp ------------- Image file for the first comic page
│ ├── page_0002.thumbnail.webp
│ ├── page_0002.webp
│ ├── page_0003.thumbnail.webp
│ └── page_0003.webp
├── comics.rss.xml ----------------- RSS XML file of all the comic items
├── index.html --------------------- Main HTML page (layout & static content)
├── license.md
└── readme.md