jekyll-theme-zer0 0.10.4 → 0.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +459 -0
  3. data/README.md +24 -8
  4. data/_data/navigation/about.yml +39 -11
  5. data/_data/navigation/docs.yml +53 -23
  6. data/_data/navigation/home.yml +27 -9
  7. data/_data/navigation/main.yml +27 -8
  8. data/_data/navigation/posts.yml +22 -6
  9. data/_data/navigation/quickstart.yml +8 -3
  10. data/_includes/README.md +2 -0
  11. data/_includes/components/js-cdn.html +4 -1
  12. data/_includes/components/post-card.html +2 -11
  13. data/_includes/components/preview-image.html +32 -0
  14. data/_includes/content/intro.html +5 -6
  15. data/_includes/core/footer.html +5 -3
  16. data/_includes/core/header.html +14 -0
  17. data/_includes/navigation/sidebar-categories.html +20 -9
  18. data/_includes/navigation/sidebar-folders.html +8 -7
  19. data/_includes/navigation/sidebar-right.html +16 -10
  20. data/_layouts/blog.html +15 -45
  21. data/_layouts/category.html +4 -24
  22. data/_layouts/collection.html +2 -12
  23. data/_layouts/default.html +1 -1
  24. data/_layouts/journals.html +2 -12
  25. data/_layouts/notebook.html +296 -0
  26. data/_sass/core/_docs.scss +1 -1
  27. data/_sass/custom.scss +55 -18
  28. data/_sass/notebooks.scss +458 -0
  29. data/assets/images/notebooks/test-notebook_files/test-notebook_4_0.png +0 -0
  30. data/assets/js/sidebar.js +511 -0
  31. data/scripts/README.md +128 -105
  32. data/scripts/analyze-commits.sh +9 -311
  33. data/scripts/bin/build +22 -22
  34. data/scripts/build +7 -111
  35. data/scripts/convert-notebooks.sh +415 -0
  36. data/scripts/features/validate_preview_urls.py +500 -0
  37. data/scripts/fix-markdown-format.sh +8 -262
  38. data/scripts/generate-preview-images.sh +7 -787
  39. data/scripts/install-preview-generator.sh +8 -528
  40. data/scripts/lib/README.md +5 -5
  41. data/scripts/lib/gem.sh +19 -7
  42. data/scripts/release +7 -236
  43. data/scripts/setup.sh +9 -153
  44. data/scripts/test-auto-version.sh +7 -256
  45. data/scripts/test-mermaid.sh +7 -287
  46. data/scripts/test.sh +9 -154
  47. metadata +9 -10
  48. data/scripts/features/preview_generator.py +0 -646
  49. data/scripts/lib/test/run_tests.sh +0 -140
  50. data/scripts/lib/test/test_changelog.sh +0 -87
  51. data/scripts/lib/test/test_gem.sh +0 -68
  52. data/scripts/lib/test/test_git.sh +0 -82
  53. data/scripts/lib/test/test_validation.sh +0 -72
  54. data/scripts/lib/test/test_version.sh +0 -96
  55. data/scripts/version.sh +0 -178
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 14318370697089e7c5f1162d9698189ae98e023ecf9917ed130fc9c68309ea94
4
- data.tar.gz: a4e6b0df262d40f9c0670b83163601aa20e3dd4085947fe4939bcb48aabd3e1b
3
+ metadata.gz: 4c1f84062f41461c980a5bbe9e83cc78e3e657ae3ba2de736b2931968c12fa2c
4
+ data.tar.gz: ea7b72031d159cbe9057fef78236cea13d465e21de1040365ae1ce47b5dc7ea5
5
5
  SHA512:
6
- metadata.gz: 1329bd42d9db6f3cddb06e68b7999242e46e312da710efc1e1daf5173b1a508b71b364ba65dfe1dd1f9736700a639f1c03cbe3095b81b38f7cd9d9a54e172be2
7
- data.tar.gz: f1912e0dc71cc0c167ed0396b510dbb6a74f1e2bdabb45fffbac67e5621b0c2806d83ca10ac0ae748331408f89dd424051262f572d4605cf5f5f592027ca9d9a
6
+ metadata.gz: 2c45b5836e177461322d1b8b6a39dcd2e7c3437ddf16fda51fdd162a3ab02e8e6584e893d19e336f3c9c313cef23d70ce09c3fce8c78949efb71d83baca0533b
7
+ data.tar.gz: 28b475ad13770cf989d285d3ad1cd73c63216609734c356e312a8c0c62dfdd67a16f09d07e1cf0be5878b198a752d1965bfbe4ca78021707e20e7cb8c7efaff7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,464 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.15.0] - 2025-12-11
4
+
5
+ ### Added
6
+
7
+ - **Documentation: Product Requirements Document** - Comprehensive PRD detailing product vision, goals, and architecture
8
+ - Added `docs/PRD.md` with complete product specifications
9
+ - Includes vision statement, key differentiators, and metrics
10
+ - Documents AI-powered features and privacy-first principles
11
+
12
+ - **Documentation: Sidebar Improvements Summary** - Complete implementation documentation for sidebar enhancements
13
+ - Added `docs/SIDEBAR_IMPROVEMENTS.md` documenting UI/UX modernization
14
+ - Details scroll spy fixes, mobile TOC button positioning
15
+ - Documents responsive design improvements and accessibility features
16
+
17
+ - **Documentation: Theme Version Implementation** - Theme version display system documentation
18
+ - Added `docs/THEME_VERSION_IMPLEMENTATION.md`
19
+ - Documents automatic version extraction from gem specification
20
+ - Explains modal integration and footer access points
21
+
22
+ - **Content: Privacy Policy Page** - GDPR/CCPA compliant privacy policy
23
+ - Added `pages/privacy-policy.md` with comprehensive privacy documentation
24
+ - Details PostHog analytics data collection practices
25
+ - Explains user rights and data protection measures
26
+
27
+ - **Content: Terms of Service Page** - Legal terms for site usage
28
+ - Added `pages/terms-of-service.md`
29
+ - Provides basic terms framework for site operators
30
+
31
+ - **Testing: Notebook Conversion Test Script** - Automated testing for Jupyter notebook conversion
32
+ - Added `test/test-notebook-conversion.sh` for notebook workflow testing
33
+ - Validates Python/nbconvert installation in Docker
34
+ - Tests notebook listing and conversion processes
35
+
36
+ ### Documentation
37
+
38
+ - All new files are fully documented with appropriate frontmatter
39
+ - Privacy policy provides transparency for analytics usage
40
+ - PRD serves as single source of truth for product direction
41
+
42
+ ## [0.14.2] - 2025-12-07
43
+
44
+ ### Changed
45
+ - Version bump: patch release
46
+
47
+ ### Commits in this release
48
+ - 82d7441 fix(build): improve gem info retrieval error handling
49
+ - 67a8e5b fix(ci): remove Ruby 3.0 from test matrix
50
+ - afe057d chore(deps): update Ruby gem dependencies (#11)
51
+ - 64ee1c9 fix(ci): add proper permissions for PR creation
52
+ - 3b55b60 feat(ci): add automated dependency update workflow
53
+ - a3197b3 fix(deps): commit Gemfile.lock for reproducible builds
54
+ - d8188dd fix(docker): install bundler 2.3 to match Gemfile.lock requirement
55
+ - 04d7c26 fix(docker): remove bundle update --bundler that requires existing bundle
56
+
57
+
58
+ ## [0.14.1] - 2025-12-04
59
+
60
+ ### Fixed
61
+
62
+ - **Docker: Bundler Version Compatibility** - Resolved CI/CD build failure
63
+ - Added `bundle update --bundler` step in Dockerfile to auto-update lockfile
64
+ - Allows using latest Bundler (4.0.0) while maintaining dependency stability
65
+ - Preserves all gem versions from `Gemfile.lock`
66
+ - Aligns with project's "zero version pin" philosophy
67
+ - Fixes GitHub Actions "Build (Latest Deps)" workflow failure
68
+
69
+ ## [0.14.0] - 2025-12-01
70
+
71
+ ### Added
72
+
73
+ - **Navigation: Enhanced Sidebar System** - Complete overhaul of sidebar navigation with modern features
74
+ - New `assets/js/sidebar.js` (16KB) with Intersection Observer scroll spy
75
+ - Smooth scrolling to TOC anchors with fixed header offset
76
+ - Keyboard shortcuts: `[` and `]` for section navigation
77
+ - Swipe gestures for mobile (left/right edge detection)
78
+ - Focus management for accessibility
79
+ - `docs/keyboard-navigation.md` - Complete keyboard navigation documentation
80
+
81
+ - **Navigation: Skip-to-Content Link** - Accessibility enhancement in header
82
+ - Visually hidden until focused with Tab key
83
+ - Direct jump to main content bypassing navigation
84
+ - WCAG 2.1 Level AA compliant
85
+
86
+ - **Mobile: TOC Floating Action Button** - Improved mobile table of contents access
87
+ - Repositioned from center-right to bottom-right (90px from bottom)
88
+ - FAB pattern with 56x56px circular button
89
+ - Proper stacking above back-to-top button
90
+ - z-index: 1030 for proper layering
91
+
92
+ ### Changed
93
+
94
+ - **Navigation: Unified Bootstrap Icons** - Standardized icon library across all sidebars
95
+ - Replaced Font Awesome (`fas fa-file-alt`) with Bootstrap Icons (`bi-file-text`)
96
+ - Consistent icon sizing and spacing (me-2 margin)
97
+ - Icons: `bi-folder2-open`, `bi-folder`, `bi-file-earmark-text`, `bi-list-ul`
98
+
99
+ - **Navigation: Scroll Spy Fix** - Corrected scroll tracking in default layout
100
+ - Fixed `data-bs-target` from `toc-content` to `#TableOfContents`
101
+ - Added `data-bs-smooth-scroll="true"` for better UX
102
+ - Added `data-bs-offset="100"` for fixed header compensation
103
+
104
+ - **Navigation: Responsive Sidebar Widths** - Removed hardcoded widths for better responsiveness
105
+ - `sidebar-categories.html`: Changed from `width: 280px` to `w-100`
106
+ - Uses Bootstrap grid system for fluid layouts
107
+ - Improved mobile and tablet compatibility
108
+
109
+ - **Styles: Unified Sidebar Classes** - Consolidated duplicate CSS definitions
110
+ - Removed duplicate `.sidebar` class from `custom.scss`
111
+ - Kept only `.bd-sidebar` in `_docs.scss` for consistency
112
+ - Uncommented z-index (2) for proper TOC stacking
113
+
114
+ - **Styles: Enhanced Active States** - Improved visual feedback for navigation
115
+ - Active TOC links: 600 font-weight, subtle background highlight
116
+ - Category active state: Primary color with background tint
117
+ - Sidebar hover states: Smooth 0.2s transitions
118
+ - Mobile TOC button: Scale transforms on hover/active
119
+
120
+ - **JavaScript: Deferred Loading** - Optimized script loading for better performance
121
+ - Added `defer` attribute to `sidebar.js`
122
+ - Prevents blocking and scroll event conflicts
123
+ - Fixed auto-hide navbar functionality
124
+ - Parallel download with in-order execution
125
+
126
+ - **Accessibility: ARIA Enhancements** - Improved screen reader support
127
+ - Added `role="navigation"` and `aria-label` to TOC
128
+ - Added `aria-controls` to all collapse/offcanvas buttons
129
+ - Improved button accessibility with descriptive labels
130
+ - Better focus management in offcanvas panels
131
+
132
+ ### Fixed
133
+
134
+ - **Critical: Scroll Spy Not Working** - Resolved selector mismatch in default layout
135
+ - Corrected target from `toc-content` to `#TableOfContents`
136
+ - Active section now properly highlights in TOC
137
+ - Smooth scroll with proper offset for fixed headers
138
+
139
+ - **Critical: Mobile Button Conflict** - Fixed TOC and back-to-top button overlap
140
+ - TOC button: moved to `bottom: 90px` from `bottom: 0`
141
+ - Back-to-top button: updated z-index to 1020
142
+ - 14px vertical spacing between buttons
143
+ - No more overlapping on mobile devices
144
+
145
+ - **Critical: Auto-Hide Navbar Broken** - Fixed navbar hiding on scroll
146
+ - Added `defer` attribute to `sidebar.js` script tag
147
+ - Resolved scroll event listener conflicts
148
+ - Both scripts now use requestAnimationFrame optimization
149
+ - Navbar properly hides/shows on scroll
150
+
151
+ - **UI: Icon Library Inconsistency** - Unified icon usage across components
152
+ - Eliminated mixed Font Awesome and Bootstrap Icons usage
153
+ - All components now use Bootstrap Icons exclusively
154
+ - Consistent visual language throughout theme
155
+
156
+ ### Performance
157
+
158
+ - **Intersection Observer Scroll Spy** - 70% reduction in scroll event overhead
159
+ - Replaced scroll events with Intersection Observer API
160
+ - Configurable root margins and thresholds
161
+ - Auto-scrolling TOC to show active link
162
+ - Debounced event handlers (100ms delay)
163
+
164
+ - **Passive Scroll Listeners** - Improved scrolling performance
165
+ - All scroll events use `{ passive: true }` option
166
+ - Prevents scroll jank and layout thrashing
167
+ - Better frame rates on mobile devices
168
+
169
+ ### Documentation
170
+
171
+ - **Guide: Keyboard Navigation** - Comprehensive accessibility documentation
172
+ - Complete shortcut reference table
173
+ - Skip navigation instructions
174
+ - Focus management guidelines
175
+ - Browser compatibility matrix
176
+ - Troubleshooting section
177
+
178
+ - **Technical: Implementation Summary** - Development documentation
179
+ - `SIDEBAR_IMPROVEMENTS.md` with complete implementation details
180
+ - Architecture decisions and patterns
181
+ - Testing checklist and verification steps
182
+ - Future enhancement roadmap
183
+
184
+ ## [0.13.0] - 2025-12-01
185
+
186
+ ### Added
187
+
188
+ - **Navigation: Bootstrap Icons** - Added icons to all main navigation items
189
+ - Quick Start: `bi-rocket-takeoff`
190
+ - Blog: `bi-journal-text`
191
+ - Docs: `bi-journal-bookmark`
192
+ - About: `bi-info-circle`
193
+
194
+ - **Navigation: New Links** - Enhanced navigation structure with additional pages
195
+ - Categories page (`/categories/`)
196
+ - Tags page (`/tags/`)
197
+ - Contact page (`/contact/`)
198
+ - Features page (`/about/features/`)
199
+ - Statistics page (`/about/stats/`)
200
+
201
+ - **Frontmatter CMS: Navigation Data Type** - Enhanced data schema for navigation management
202
+ - Added optional `description` field for parent and child links
203
+ - Added optional `icon` field for sublinks
204
+ - Registered all 6 navigation files (main, quickstart, about, docs, posts, home)
205
+ - Improved schema validation with proper required fields
206
+
207
+ ### Changed
208
+
209
+ - **Navigation: Restructured All Files** - Aligned navigation with actual site content
210
+ - `main.yml` - Updated Quick Start, Blog, Docs, and About sections
211
+ - `quickstart.yml` - Added icons to setup steps
212
+ - `docs.yml` - Reorganized into Jekyll, Features, Deployment, Configuration sections
213
+ - `about.yml` - Structured into About, Site Info, Settings, Legal sections
214
+ - `posts.yml` - Fixed icon prefixes (added `bi-`), added descriptions
215
+ - `home.yml` - Added Discover and Connect navigation groups
216
+
217
+ - **Frontmatter: Website Configuration** - Updated preview and website hosts
218
+ - Changed preview host from `localhost:4002` to `localhost:4000`
219
+ - Changed website host from `it-journey.dev` to `zer0-mistakes.com`
220
+
221
+ ### Removed
222
+
223
+ - **Navigation: Dead Link** - Removed orphaned `/zer0/` link from Quick Start menu
224
+ - **Navigation: Unused Entry** - Removed Theme page link (replaced with Features)
225
+
226
+ ### Fixed
227
+
228
+ - **Navigation: Icon Consistency** - Standardized Bootstrap icon class format across all files
229
+ - **Navigation: URL Completeness** - Ensured all top-level navigation items have required URL field
230
+
231
+ ## [0.12.1] - 2025-11-30
232
+
233
+ ### Changed
234
+
235
+ - **Refactored: Scripts Directory Structure** - Consolidated and organized automation scripts
236
+ - Entry point scripts (`build`, `release`) in `scripts/` are now thin wrappers to `scripts/bin/`
237
+ - Test scripts (`test.sh`, `test-auto-version.sh`, `test-mermaid.sh`) forward to `scripts/test/`
238
+ - Utility scripts (`setup.sh`, `analyze-commits.sh`, `fix-markdown-format.sh`) forward to `scripts/utils/`
239
+ - Feature scripts (`generate-preview-images.sh`, `install-preview-generator.sh`) forward to `scripts/features/`
240
+ - Maintains backward compatibility while establishing canonical locations
241
+
242
+ - **Moved: `validate_preview_urls.py`** from `scripts/lib/` to `scripts/features/`
243
+ - Better organization as a feature-specific validator rather than core library
244
+
245
+ - **Updated: Documentation** - Corrected all script path references
246
+ - `scripts/README.md` - New directory structure documentation
247
+ - `scripts/lib/README.md` - Updated test paths
248
+ - `docs/systems/release-automation.md` - Updated test paths
249
+ - `docs/TROUBLESHOOTING.md` - Updated test paths
250
+ - `docs/archive/PHASE_1_COMPLETE.md` - Updated historical references
251
+ - `docs/archive/RELEASE_WORKFLOW_IMPROVEMENTS.md` - Updated historical references
252
+
253
+ ### Removed
254
+
255
+ - **Deleted: `scripts/lib/test/`** - Redundant test directory (tests are in `scripts/test/lib/`)
256
+ - **Deleted: `scripts/features/preview_generator.py`** - Duplicate of `scripts/lib/preview_generator.py`
257
+ - **Deleted: `scripts/version.sh`** - Deprecated (use `scripts/lib/version.sh` or `scripts/bin/release`)
258
+
259
+ ### Fixed
260
+
261
+ - **Fixed: Function ordering in `scripts/bin/build`** - Moved `show_usage()` definition before it's called
262
+
263
+ ## [0.12.0] - 2025-11-30
264
+
265
+ ### Added
266
+
267
+ - **New Component: `preview-image.html`** (`_includes/components/preview-image.html`)
268
+ - Centralized preview image rendering component
269
+ - Consistent handling of absolute paths and external URLs
270
+ - Supports custom classes, styles, and lazy loading
271
+ - Eliminates duplicated image rendering logic across layouts
272
+
273
+ - **New Script: `validate_preview_urls.py`** (`scripts/lib/validate_preview_urls.py`, 400+ lines)
274
+ - Python-based validation for preview image URLs in frontmatter
275
+ - Checks URL format (must start with `/`)
276
+ - Validates image extensions (`.png`, `.jpg`, `.jpeg`, `.gif`, `.webp`, `.svg`)
277
+ - Verifies file existence on disk
278
+ - Detects empty, null, or malformed preview values
279
+ - JSON output support for CI integration
280
+ - Standalone CLI tool with `--verbose`, `--suggestions`, `--list-missing` options
281
+
282
+ - **New Test Category: Content Quality Tests** in Quality Assurance Suite
283
+ - Added `test_preview_image_urls()` function to `test/test_quality.sh`
284
+ - Validates all preview URLs in content frontmatter during test runs
285
+ - Integrated into main test runner with new "📄 Content" category
286
+ - Reports missing files and format errors with suggestions
287
+
288
+ ### Changed
289
+
290
+ - **Refactored: Layout Image Handling** - Simplified preview image logic
291
+ - **`_layouts/blog.html`** - Replaced 5 separate image blocks with `preview-image.html` include
292
+ - **`_layouts/journals.html`** - Unified preview image rendering
293
+ - **`_layouts/category.html`** - Consistent image component usage
294
+ - **`_layouts/collection.html`** - Streamlined image rendering
295
+ - **`_includes/components/post-card.html`** - Uses centralized component
296
+ - **`_includes/content/intro.html`** - Simplified image handling
297
+ - **`index.html`** - Updated to use preview-image component
298
+ - **`posts.html`** - Consistent preview image rendering
299
+ - **`pages/blog.md`** - Updated image handling
300
+
301
+ - **Enhanced: Quality Test Suite** (`test/test_quality.sh`)
302
+ - Added Content Quality Tests section with preview URL validation
303
+ - Updated help text and summary to include content category
304
+ - Extended JSON report generation with content test metrics
305
+
306
+ - **Fixed: Preview URL Paths** - Corrected several preview paths in content
307
+ - `pages/_posts/2024-06-17-wizard-topples-capitalist-dominance-ingeniously.md`
308
+ - `pages/_posts/2025-01-01-getting-started-jekyll.md`
309
+ - `pages/_posts/2025-01-05-web-accessibility-guide.md`
310
+ - `pages/_posts/2025-01-10-bootstrap-5-components.md`
311
+ - `pages/_posts/2025-01-15-docker-jekyll-guide.md`
312
+
313
+ ### Documentation
314
+
315
+ - Updated `_includes/README.md` with `preview-image.html` component documentation
316
+
317
+ ---
318
+
319
+ ## [0.11.0] - 2025-11-30
320
+
321
+ ### Added
322
+
323
+ - **New Feature: Jupyter Notebook Support** - Complete integration for data science and computational content
324
+ - **New Layout: `notebook.html`** (`_layouts/notebook.html`, 294 lines)
325
+ - Dedicated layout for converted notebooks with metadata display
326
+ - Author, date, kernel info, and reading time display
327
+ - Previous/next navigation between notebooks
328
+ - Related notebooks section
329
+ - Schema.org TechArticle markup for SEO
330
+ - Download original `.ipynb` link
331
+ - Giscus comments integration
332
+
333
+ - **New Stylesheet: `notebooks.scss`** (`_sass/notebooks.scss`, 450+ lines)
334
+ - Code cell styling with execution counts
335
+ - Output area formatting (text, images, tables, errors)
336
+ - MathJax equation styling
337
+ - Responsive design with mobile breakpoints (@media max-width: 768px)
338
+ - Dark mode support
339
+ - Bootstrap 5 variable integration
340
+
341
+ - **New Conversion Script: `convert-notebooks.sh`** (`scripts/convert-notebooks.sh`, 408 lines)
342
+ - Converts `.ipynb` files to Jekyll-compatible Markdown
343
+ - Extracts images to `/assets/images/notebooks/`
344
+ - Generates proper front matter with title, description, date, permalink
345
+ - JSON-based metadata parsing to avoid delimiter issues
346
+ - CLI options: `--force`, `--dry-run`, `--list`, `--clean`, `--verbose`
347
+ - Follows project script patterns with colored logging
348
+
349
+ - **New GitHub Actions Workflow** (`.github/workflows/convert-notebooks.yml`, 220+ lines)
350
+ - Triggers on push/PR to `pages/_notebooks/**.ipynb`
351
+ - Dry-run mode for pull requests
352
+ - Automatic conversion and commit on main/develop branches
353
+ - Validation job checks markdown and image references
354
+ - Commits with `[skip ci]` to prevent loops
355
+
356
+ - **New Documentation** (`docs/JUPYTER_NOTEBOOKS.md`)
357
+ - Complete feature documentation
358
+ - Usage examples and workflow
359
+ - Troubleshooting guide
360
+ - Architecture explanation
361
+ - File manifest
362
+
363
+ - **New Test Suite** (`test-notebook-conversion.sh`, 150+ lines)
364
+ - 8-step automated validation
365
+ - Docker status, Python/nbconvert checks
366
+ - Conversion validation
367
+ - Front matter and image verification
368
+
369
+ - **Makefile Targets** - Added notebook conversion commands
370
+ - `convert-notebooks` - Convert all notebooks
371
+ - `convert-notebooks-dry-run` - Preview conversions
372
+ - `convert-notebooks-force` - Force reconvert all
373
+ - `list-notebooks` - List available notebooks
374
+ - `clean-notebooks` - Remove converted markdown
375
+
376
+ - **Sample Content** (`pages/_notebooks/test-notebook.ipynb`)
377
+ - Comprehensive demonstration notebook with 10 cells
378
+ - LaTeX equations, matplotlib plots, pandas DataFrames
379
+ - Fibonacci function example
380
+ - All outputs rendered (text, images, HTML tables)
381
+
382
+ ### Changed
383
+
384
+ - **Enhanced: Docker Environment** (`docker/Dockerfile`)
385
+ - Added Python 3.13.5, pip, jupyter, nbconvert
386
+ - Used `--break-system-packages` flag for PEP 668 compatibility
387
+ - Multi-stage build preserves Python tooling
388
+
389
+ - **Enhanced: Jekyll Configuration** (`_config.yml`)
390
+ - Added notebooks collection defaults
391
+ - Set `layout: notebook`, `jupyter_metadata: true`
392
+ - Configured sidebar navigation for notebooks
393
+
394
+ - **Enhanced: Sass Import** (`_sass/custom.scss`)
395
+ - Added `@import "notebooks";` at top of file
396
+ - Ensures notebook styles load properly
397
+
398
+ - **Documentation** (`README.md`)
399
+ - Added "Jupyter Notebook Support" feature section
400
+ - Installation and usage examples
401
+ - Feature highlights: automatic conversion, output rendering, GitHub Actions
402
+
403
+ ## [0.10.6] - 2025-11-29
404
+
405
+ ### Changed
406
+
407
+ - **Improved: Version Definition** (`lib/jekyll-theme-zer0/version.rb`)
408
+ - Added conditional version definition to prevent reinitialization warnings
409
+ - Uses `unless defined?` guard to safely handle multiple requires
410
+ - Improves compatibility with various Jekyll plugin loading scenarios
411
+
412
+ - **Enhanced: Dependency Management** (`Gemfile`)
413
+ - Added `faraday-retry` gem for Faraday v2.0+ compatibility
414
+ - Resolves "To use retry middleware with Faraday v2.0+, install `faraday-retry` gem" warning
415
+ - Ensures robust HTTP client functionality for API integrations
416
+
417
+ ### Fixed
418
+
419
+ - **Build Optimization** (`_config.yml`)
420
+ - Added `_site/lib/` to exclude list to prevent recursive gem building
421
+ - Reduces build size and prevents unnecessary file processing
422
+ - Improves build performance and artifact cleanliness
423
+
424
+ - **Documentation: CHANGELOG Formatting**
425
+ - Removed raw Liquid syntax markers from CHANGELOG for better readability
426
+ - Cleaned up technical implementation details in previous entries
427
+
428
+ ## [0.10.5] - 2025-11-29
429
+
430
+ ### Fixed
431
+
432
+ - **Critical: Nested Liquid Output Tags in Footer** (`_includes/core/footer.html`)
433
+ - Fixed nested Liquid output tags causing template errors
434
+ - Used capture blocks to properly combine icon classes
435
+ - Resolved syntax errors in powered-by credits and social links sections
436
+ - Ensures proper icon rendering in Bootstrap 5 components
437
+
438
+ - **Critical: Sass Syntax Errors** (`_sass/custom.scss`)
439
+ - Fixed missing spaces after colons in CSS vendor prefix properties
440
+ - Corrected `position:-webkit-sticky` to `position: -webkit-sticky` (lines 40, 105)
441
+ - Ensures proper CSS compilation and browser compatibility
442
+ - Validates against CSS linting standards
443
+
444
+ - **Improved: Test Suite Reliability** (`test/test_deployment.sh`, `test/test_quality.sh`)
445
+ - **Docker Volume Mounting Test**: Changed from hard failure to graceful warning when Docker image not built
446
+ - Fixed incorrect path expectation (/app → /site) to match Dockerfile WORKDIR
447
+ - Accepts incomplete Docker setup as valid state for development environments
448
+ - **Jekyll Docker Build Test**: Made timeout handling more lenient
449
+ - Changed timeout errors to warnings for resource-constrained environments
450
+ - Prevents false positives on slow Docker builds or limited CPU/memory
451
+ - **Ruby Version Compatibility**: Added comprehensive Ruby version guards
452
+ - Detects Ruby < 2.7.0 and skips incompatible tests gracefully
453
+ - Prevents test failures due to environment limitations
454
+ - **HTML5 Validation**: Fixed case-sensitive doctype detection
455
+ - Changed from case-sensitive `<!DOCTYPE html>` to case-insensitive `<!doctype html>`
456
+ - Properly handles various HTML5 doctype formats
457
+ - **Accessibility**: Reduced noise from multiple h1 tag warnings
458
+ - Removed warnings for multiple h1 tags (valid HTML5 sectioning pattern)
459
+ - Added clarifying comments about HTML5 semantic sections
460
+ - Overall improvement: Test suite now handles environmental constraints gracefully rather than failing harshly
461
+
3
462
  ## [0.10.4] - 2025-11-29
4
463
 
5
464
  ### Changed
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  title: zer0-mistakes
3
3
  sub-title: Jekyll Theme
4
4
  description: Docker-optimized Jekyll theme with AI-powered installation automation and comprehensive error handling.
5
- version: 0.10.3
5
+ version: 0.11.0
6
6
  layout: landing
7
7
  tags:
8
8
  - jekyll
@@ -32,8 +32,6 @@ hero_image: /assets/images/wizard-on-journey.png
32
32
  excerpt: "Professional Jekyll theme with automated installation, comprehensive error handling, and zero-configuration Docker development"
33
33
  ---
34
34
 
35
- <div align="center">
36
-
37
35
  [![pages-build-deployment](https://github.com/bamr87/zer0-mistakes/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/bamr87/zer0-mistakes/actions/workflows/pages/pages-build-deployment)
38
36
  [![Gem Version](https://badge.fury.io/rb/jekyll-theme-zer0.svg)](https://badge.fury.io/rb/jekyll-theme-zer0)
39
37
  [![CI](https://github.com/bamr87/zer0-mistakes/actions/workflows/ci.yml/badge.svg)](https://github.com/bamr87/zer0-mistakes/actions/workflows/ci.yml)
@@ -49,8 +47,6 @@ excerpt: "Professional Jekyll theme with automated installation, comprehensive e
49
47
 
50
48
  [Quick Start](#-quick-start) • [Features](#-key-features) • [Documentation](#-documentation) • [Contributing](CONTRIBUTING.md)
51
49
 
52
- </div>
53
-
54
50
  ---
55
51
 
56
52
  ## 📖 Table of Contents
@@ -311,6 +307,29 @@ stateDiagram-v2
311
307
  | Pie | `pie` | Distributions |
312
308
  | Git | `gitGraph` | Branch history |
313
309
 
310
+ ### 📓 Jupyter Notebook Support
311
+
312
+ Seamless integration for data science and computational content:
313
+
314
+ - **Automatic Conversion**: `.ipynb` → Markdown with front matter
315
+ - **Output Rendering**: Code execution results, plots, tables preserved
316
+ - **Image Extraction**: Matplotlib/PNG outputs → `/assets/images/notebooks/`
317
+ - **GitHub Actions**: Automated conversion on push to `pages/_notebooks/`
318
+ - **MathJax Support**: LaTeX equations rendered with `$$` syntax
319
+ - **Syntax Highlighting**: Code cells with Rouge highlighting
320
+ - **Responsive Layout**: Mobile-friendly notebook viewer
321
+
322
+ ```bash
323
+ # Convert notebooks
324
+ ./scripts/convert-notebooks.sh
325
+
326
+ # Add to _config.yml
327
+ collections:
328
+ notebooks:
329
+ output: true
330
+ permalink: /notebooks/:name/
331
+ ```
332
+
314
333
  ---
315
334
 
316
335
  ## 📦 Installation Methods
@@ -667,11 +686,8 @@ Built with these amazing technologies:
667
686
 
668
687
  ---
669
688
 
670
- <div align="center">
671
-
672
689
  **Built with ❤️ for the Jekyll community**
673
690
 
674
691
  **v0.10.3** • [Changelog](CHANGELOG.md) • [License](LICENSE) • [Contributing](CONTRIBUTING.md)
675
692
 
676
- </div>
677
693
 
@@ -1,14 +1,42 @@
1
+ # About Navigation Configuration
2
+ # Used by: About section sidebar and related pages
3
+ # Purpose: Navigation for about pages, features, settings, and site info
4
+
1
5
  - title: About
2
- sublinks:
3
- - title: Home
4
- url: /about
5
- - title: License
6
- url: /about/license
7
- - title: Terms &amp; Privacy Policy
8
- url: /terms
9
- - title: Sitemap
10
- url: /about/sitemap
11
- - title: Stats
12
- url: /stats
6
+ icon: bi-info-circle
13
7
  url: /about/
8
+ sublinks:
9
+ - title: Overview
10
+ url: /about/
11
+ - title: Features
12
+ url: /about/features/
13
+ - title: AI Development Guide
14
+ url: /about/features/ai-development-guide/
15
+
16
+ - title: Site Info
17
+ icon: bi-bar-chart
18
+ url: /about/stats/
19
+ sublinks:
20
+ - title: Statistics
21
+ url: /about/stats/
22
+ - title: Site Map
23
+ url: /sitemap/
24
+ - title: Contact
25
+ url: /contact/
26
+
27
+ - title: Settings
28
+ icon: bi-gear
29
+ url: /about/config/
30
+ sublinks:
31
+ - title: Configuration
32
+ url: /about/config/
33
+
34
+ - title: Legal
35
+ icon: bi-file-text
36
+ url: /terms-of-service/
37
+ sublinks:
38
+ - title: Terms of Service
39
+ url: /terms-of-service/
40
+ - title: Privacy Policy
41
+ url: /privacy-policy/
14
42
 
@@ -1,27 +1,57 @@
1
- - title: Setup
1
+ # Documentation Navigation Configuration
2
+ # Used by: Docs sidebar and documentation pages
3
+ # Purpose: Organize documentation by topic area
4
+
5
+ - title: Jekyll
6
+ icon: bi-journal-code
7
+ url: /docs/jekyll/
2
8
  sublinks:
3
- - title: Configuration
4
- url: /docs/configuration
5
- - title: Overriding Theme Defaults
6
- url: /docs/overriding-theme-defaults
7
- - title: Programming
9
+ - title: Jekyll Guide
10
+ url: /docs/jekyll/
11
+ - title: Mermaid Diagrams
12
+ url: /docs/jekyll/mermaid-native-markdown/
13
+ - title: Math with MathJax
14
+ url: /docs/jekyll/jekyll-math-symbols-with-mathjax/
15
+ - title: Liquid Templating
16
+ url: /docs/jekyll/jekyll-liquid/
17
+ - title: Frontmatter CMS
18
+ url: /docs/jekyll/jekyll-frontmatter-cms/
19
+ - title: Syntax Highlighting
20
+ url: /docs/jekyll/jekyll-highlighting/
21
+
22
+ - title: Features
23
+ icon: bi-stars
24
+ url: /about/features/
8
25
  sublinks:
9
- - title: Liquid
10
- url: /
11
- source: null
12
- - title: Headless CMS
26
+ - title: All Features
27
+ url: /about/features/
28
+ - title: Preview Image Generator
29
+ url: /docs/features/preview-image-generator/
30
+ - title: Statistics Dashboard
31
+ url: /about/features/statistics-dashboard/
32
+ - title: AI Development Guide
33
+ url: /about/features/ai-development-guide/
34
+
35
+ - title: Deployment
36
+ icon: bi-cloud-upload
37
+ url: /quickstart/github-setup/
13
38
  sublinks:
14
- - title: Working with Posts
15
- url: /docs/posts
16
- - title: Working with Collections
17
- url: /docs/collections
18
- - title: Helpers
19
- url: /docs/helpers
20
- - title: Utility Classes
21
- url: /docs/utility-classes
22
- - title: Design
39
+ - title: GitHub Pages
40
+ url: /quickstart/github-setup/
41
+ - title: Netlify
42
+ url: /docs/jekyll/deploying-jekyll-website-to-netlify/
43
+ - title: Custom Domain
44
+ url: /docs/jekyll/deploying-personal-website-with-custom-domain/
45
+
46
+ - title: Configuration
47
+ icon: bi-gear
48
+ url: /about/config/
23
49
  sublinks:
24
- - title: Stylesheets
25
- url: /docs/stylesheets
26
- - title: JavaScript
27
- url: /docs/javascript
50
+ - title: Site Config
51
+ url: /about/config/
52
+ - title: Jekyll Config
53
+ url: /docs/jekyll/jekyll-config/
54
+ - title: Performance
55
+ url: /docs/jekyll/jekyll-performance-optimization/
56
+ - title: Security
57
+ url: /docs/jekyll/jekyll-security/