# Template for creating new comics # Copy this file and rename it to match your comic number (e.g., 004.yaml, 005.yaml) # Fields marked as REQUIRED must be included # All other fields are optional # REQUIRED: Sequential comic number number: 999 # REQUIRED: Image filename(s) in static/images/comics/ # Single image: filename: comic-999.jpg # OR multi-image (webtoon style): # filename: # - page1.png # - page2.png # - page3.png # Optional: Mobile-optimized version of the comic # mobile_filename: comic-999-mobile.jpg # REQUIRED: Publication date (YYYY-MM-DD format) date: "2025-01-01" # REQUIRED: Accessibility text for screen readers # Single alt text (for single or multi-image): alt_text: "Description of what happens in this comic" # OR individual alt texts for multi-image comics: # alt_text: # - "Description of first image" # - "Description of second image" # - "Description of third image" # Optional: Comic title (defaults to "#X" if not provided) title: "Title of Your Comic" # Optional: Plain text author note author_note: "Your thoughts about this comic." # Optional: Markdown author note file (overrides author_note if present) # Just filename looks in content/author_notes/ # Or use path like "special/note.md" relative to content/ # author_note_md: "2025-01-01.md" # Optional: Override global FULL_WIDTH_DEFAULT setting # full_width: true # Optional: Override global PLAIN_DEFAULT setting (hides header/border) # plain: true # Optional: Section/chapter title (only add to first comic of a new section) # section: "Chapter 2: New Adventures"