jekyll-theme-zer0 0.16.0 → 0.17.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +82 -10
- data/README.md +7 -7
- data/_data/authors.yml +2 -2
- data/_data/features.yml +676 -0
- data/_data/navigation/README.md +54 -0
- data/_data/navigation/about.yml +7 -5
- data/_data/navigation/docs.yml +77 -31
- data/_data/navigation/home.yml +4 -3
- data/_data/navigation/main.yml +16 -7
- data/_data/navigation/quickstart.yml +4 -2
- data/_includes/components/js-cdn.html +2 -2
- data/_includes/landing/landing-install-cards.html +8 -8
- data/_includes/landing/landing-quick-links.html +4 -4
- data/_includes/navigation/breadcrumbs.html +29 -6
- data/_includes/navigation/nav-tree.html +181 -0
- data/_includes/navigation/navbar.html +262 -9
- data/_includes/navigation/sidebar-left.html +22 -23
- data/_layouts/default.html +1 -1
- data/_layouts/landing.html +1 -1
- data/_layouts/notebook.html +4 -4
- data/_layouts/root.html +2 -2
- data/_sass/core/_nav-tree.scss +145 -0
- data/_sass/custom.scss +3 -0
- data/assets/js/modules/navigation/config.js +149 -0
- data/assets/js/modules/navigation/focus.js +189 -0
- data/assets/js/modules/navigation/gestures.js +179 -0
- data/assets/js/modules/navigation/index.js +227 -0
- data/assets/js/modules/navigation/keyboard.js +237 -0
- data/assets/js/modules/navigation/scroll-spy.js +219 -0
- data/assets/js/modules/navigation/sidebar-state.js +267 -0
- data/assets/js/modules/navigation/smooth-scroll.js +153 -0
- data/scripts/migrate-nav-modes.sh +146 -0
- metadata +15 -3
- data/assets/js/sidebar.js +0 -511
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cedad3b535f19c489e0d874be9c116789f981fc042743150be32b06f7d6481c7
|
|
4
|
+
data.tar.gz: 0cd8445680be5c73980338a85aba69a8edb5e9484003fd74daf80c104690e22d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35520e071daded7969373b51f103d8a8440db28b03044ca1db0c01832d676cbcfc32d677d285ce612c8f79a6a2fa2fa8023570457a28cba83615fea8363bd1eb
|
|
7
|
+
data.tar.gz: 654aa816eeb3b3e1019f0686eb2516eb4404e17ad4e533f764d32240fd1454a6c893a6e376fb907387b0a5f3cd514c1e364b365df92ed07e1279a90144ffc222
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,79 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.17.0] - 2025-12-23
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **Navbar Hover Dropdowns**: Desktop users can now hover over navigation items to reveal sub-menus with smooth fade transitions
|
|
7
|
+
- **ES6 Navigation Modules**: Complete rewrite of navigation JavaScript using native ES6 modules (`type="module"`)
|
|
8
|
+
- `config.js` - Centralized configuration with CSS custom properties
|
|
9
|
+
- `scroll-spy.js` - Table of contents highlighting
|
|
10
|
+
- `smooth-scroll.js` - Animated scrolling to anchors
|
|
11
|
+
- `keyboard.js` - Full keyboard navigation support
|
|
12
|
+
- `gestures.js` - Touch gesture support for mobile
|
|
13
|
+
- `focus.js` - Focus management and accessibility
|
|
14
|
+
- `sidebar-state.js` - Persistent expand/collapse state
|
|
15
|
+
- `index.js` - Module orchestration and initialization
|
|
16
|
+
- **Nav Tree Component**: New `_includes/navigation/nav-tree.html` for rendering hierarchical YAML navigation (2 levels deep)
|
|
17
|
+
- **Navigation Schema Documentation**: Added `_data/navigation/README.md` with complete schema definition
|
|
18
|
+
- **Migration Script**: Added `scripts/migrate-nav-modes.sh` to update front matter from old to new nav modes
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- **Navigation YAML Schema**: Standardized on `children` key (previously `sublinks`) across all navigation files
|
|
22
|
+
- **Navigation Modes**: Simplified to 3 standard modes:
|
|
23
|
+
- `auto` - Auto-generates from collection documents (replaces `dynamic`)
|
|
24
|
+
- `tree` - Uses YAML data files for hierarchical navigation
|
|
25
|
+
- `categories` - Groups content by Jekyll categories (replaces `searchCats`)
|
|
26
|
+
- **Sidebar Component**: Refactored `_includes/navigation/sidebar-left.html` to use new nav modes
|
|
27
|
+
- **Script Loading**: Updated `_includes/components/js-cdn.html` to use `type="module"` for ES6 modules
|
|
28
|
+
- **Default Collection Config**: Updated `_config.yml` with new navigation mode defaults
|
|
29
|
+
|
|
30
|
+
### Removed
|
|
31
|
+
- **Legacy sidebar.js**: Deleted 512-line IIFE-based sidebar script, replaced by modular ES6 architecture
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
- **Mobile Dropdown Behavior**: Fixed glitch where opening one dropdown would close others; each now operates independently
|
|
35
|
+
- **Dropdown Positioning**: Fixed desktop hover dropdowns appearing on top of parent links (now correctly appear below)
|
|
36
|
+
|
|
37
|
+
## [0.16.3] - 2025-01-27
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
- **Documentation Navigation**: Restructured `_data/navigation/docs.yml` with logical sections (Getting Started, Core Technologies, Theme Features, Deployment)
|
|
41
|
+
- **Main Navigation**: Updated `_data/navigation/main.yml` with expanded Docs dropdown entries (Documentation Home, Installation, Docker, Troubleshooting)
|
|
42
|
+
|
|
43
|
+
### Fixed
|
|
44
|
+
- **Liquid Syntax Error**: Fixed pre-existing bug in `pages/features.md` where `where_exp` filters used unsupported `or` conditions (Liquid 4.x compatibility)
|
|
45
|
+
|
|
46
|
+
### Documentation
|
|
47
|
+
- **Installation Guide**: Expanded with platform-specific guides (macOS, Windows, Linux), Docker quick start, verification steps
|
|
48
|
+
- **Docker Guide**: Added essential commands, container workflows, configuration files, Apple Silicon support, troubleshooting
|
|
49
|
+
- **Troubleshooting Guide**: Added sections for Docker issues, Jekyll build errors, front matter problems, performance optimization
|
|
50
|
+
- **Jekyll Guide**: Added directory structure, configuration files, content collections, essential commands, topic index
|
|
51
|
+
- **Bootstrap Guide**: Added CDN loading patterns, key components, responsive breakpoints, custom styles, icons
|
|
52
|
+
- **Liquid Guide**: Added syntax examples with `{% raw %}` tags, filters, control flow, includes
|
|
53
|
+
- **Ruby Guide**: Added version commands, common commands, key files, Docker usage, troubleshooting
|
|
54
|
+
- **Front Matter Guide**: Added required/optional fields, layout options, collection-specific fields, complete examples
|
|
55
|
+
- All documentation pages now include `sidebar: nav: docs` for consistent navigation
|
|
56
|
+
|
|
57
|
+
## [0.16.2] - 2025-12-20
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
- Version bump: patch release
|
|
61
|
+
|
|
62
|
+
### Commits in this release
|
|
63
|
+
- 2a0057e Comprehensive features.yml with references, documentation, and showcase page (#17)
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
## [0.16.1] - 2025-12-20
|
|
67
|
+
|
|
68
|
+
### Changed
|
|
69
|
+
- Hardened CI workflows with least-privilege `permissions` and `concurrency`
|
|
70
|
+
- Updated landing/repo links to render correctly with YAML-array URL config
|
|
71
|
+
- Excluded repo technical `docs/` from the published site build (GitHub links used instead)
|
|
72
|
+
|
|
73
|
+
### Fixed
|
|
74
|
+
- Removed false-green behavior in `test-latest.yml` (RSpec/HTMLProofer now fail the workflow)
|
|
75
|
+
- Fixed broken internal links/hashes and aligned navigation anchors (strict HTMLProofer-compatible)
|
|
76
|
+
|
|
3
77
|
## [0.16.0] - 2025-12-20
|
|
4
78
|
|
|
5
79
|
### Added
|
|
@@ -64,8 +138,6 @@
|
|
|
64
138
|
### Commits in this release
|
|
65
139
|
- e1342ab Add configuration files for content organization, prerequisites, statistics, and UI text
|
|
66
140
|
- 366e8a2 chore(deps): update Ruby gem dependencies (#16)
|
|
67
|
-
|
|
68
|
-
|
|
69
141
|
## [0.15.1] - 2025-12-14
|
|
70
142
|
|
|
71
143
|
### Changed
|
|
@@ -1104,7 +1176,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1104
1176
|
- **Performance**: Optimized DOM manipulation and content rendering
|
|
1105
1177
|
- **Accessibility**: Full screen reader support and keyboard navigation
|
|
1106
1178
|
|
|
1107
|
-
**Full Documentation**: [v0.5.0 Release Summary](docs/releases/v0.5.0-release-summary.md)
|
|
1179
|
+
**Full Documentation**: [v0.5.0 Release Summary](https://github.com/bamr87/zer0-mistakes/blob/main/docs/releases/v0.5.0-release-summary.md)
|
|
1108
1180
|
|
|
1109
1181
|
## [0.4.0] - 2025-10-10
|
|
1110
1182
|
|
|
@@ -1149,7 +1221,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1149
1221
|
- Eliminated type conversion errors in sorting operations
|
|
1150
1222
|
- Proper handling of nested array data structures
|
|
1151
1223
|
|
|
1152
|
-
**Full Documentation**: [v0.4.0 Release Summary](docs/releases/v0.4.0-release-summary.md)
|
|
1224
|
+
**Full Documentation**: [v0.4.0 Release Summary](https://github.com/bamr87/zer0-mistakes/blob/main/docs/releases/v0.4.0-release-summary.md)
|
|
1153
1225
|
|
|
1154
1226
|
## [0.3.0] - 2025-01-27
|
|
1155
1227
|
|
|
@@ -1184,7 +1256,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1184
1256
|
- **⚡ Performance**: Optimized loading and rendering speed
|
|
1185
1257
|
- **🎯 Usability**: Improved setup process and error handling
|
|
1186
1258
|
|
|
1187
|
-
**Full Documentation**: [v0.3.0 Release Notes](docs/releases/v0.3.0-release-notes.md)
|
|
1259
|
+
**Full Documentation**: [v0.3.0 Release Notes](https://github.com/bamr87/zer0-mistakes/blob/main/docs/releases/v0.3.0-release-notes.md)
|
|
1188
1260
|
|
|
1189
1261
|
## [0.2.1] - 2025-09-30
|
|
1190
1262
|
|
|
@@ -1304,11 +1376,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
1304
1376
|
|
|
1305
1377
|
For detailed documentation on features, systems, and configuration:
|
|
1306
1378
|
|
|
1307
|
-
- **[Documentation Center](docs
|
|
1308
|
-
- **[Release Documentation](docs/releases
|
|
1309
|
-
- **[Feature Documentation](docs/features
|
|
1310
|
-
- **[System Documentation](docs/systems
|
|
1311
|
-
- **[Configuration Guides](docs/configuration
|
|
1379
|
+
- **[Documentation Center](https://github.com/bamr87/zer0-mistakes/tree/main/docs)** - Complete documentation overview
|
|
1380
|
+
- **[Release Documentation](https://github.com/bamr87/zer0-mistakes/tree/main/docs/releases)** - Historical release information
|
|
1381
|
+
- **[Feature Documentation](https://github.com/bamr87/zer0-mistakes/tree/main/docs/features)** - Detailed feature guides
|
|
1382
|
+
- **[System Documentation](https://github.com/bamr87/zer0-mistakes/tree/main/docs/systems)** - Core systems and automation
|
|
1383
|
+
- **[Configuration Guides](https://github.com/bamr87/zer0-mistakes/tree/main/docs/configuration)** - Setup and configuration
|
|
1312
1384
|
|
|
1313
1385
|
## Links
|
|
1314
1386
|
|
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.
|
|
5
|
+
version: 0.16.1
|
|
6
6
|
layout: landing
|
|
7
7
|
tags:
|
|
8
8
|
- jekyll
|
|
@@ -564,13 +564,13 @@ graph LR
|
|
|
564
564
|
|
|
565
565
|
| Resource | Description |
|
|
566
566
|
|----------|-------------|
|
|
567
|
-
| [📋 Technical Docs](docs/) | Architecture, systems, implementation |
|
|
568
|
-
| [📖 User Guides](
|
|
569
|
-
| [🤖 Copilot Instructions](.github/copilot-instructions.md) | AI development guidelines |
|
|
570
|
-
| [⌨️ Keyboard Navigation](docs/keyboard-navigation.md) | Accessibility shortcuts guide |
|
|
571
|
-
| [📓 Jupyter Notebooks](docs/JUPYTER_NOTEBOOKS.md) | Notebook conversion documentation |
|
|
567
|
+
| [📋 Technical Docs]({{ site.resources.github_repo | default: '' | join: '' }}/tree/{{ site.branch }}/docs/) | Architecture, systems, implementation |
|
|
568
|
+
| [📖 User Guides]({{ '/docs/' | relative_url }}) | Published tutorials and references |
|
|
569
|
+
| [🤖 Copilot Instructions]({{ site.resources.github_repo | default: '' | join: '' }}/blob/{{ site.branch }}/.github/copilot-instructions.md) | AI development guidelines |
|
|
570
|
+
| [⌨️ Keyboard Navigation]({{ site.resources.github_repo | default: '' | join: '' }}/blob/{{ site.branch }}/docs/keyboard-navigation.md) | Accessibility shortcuts guide |
|
|
571
|
+
| [📓 Jupyter Notebooks]({{ site.resources.github_repo | default: '' | join: '' }}/blob/{{ site.branch }}/docs/JUPYTER_NOTEBOOKS.md) | Notebook conversion documentation |
|
|
572
572
|
| [📝 PRD](PRD.md) | Product requirements & roadmap |
|
|
573
|
-
| [🔒 Privacy Policy](
|
|
573
|
+
| [🔒 Privacy Policy]({{ '/privacy-policy/' | relative_url }}) | GDPR/CCPA compliant privacy docs |
|
|
574
574
|
|
|
575
575
|
---
|
|
576
576
|
|
data/_data/authors.yml
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
default:
|
|
20
20
|
name: "Zer0-Mistakes Team"
|
|
21
21
|
bio: "The collective voice of the Zer0-Mistakes Jekyll theme development team."
|
|
22
|
-
avatar: "/images/
|
|
22
|
+
avatar: "/images/gravatar-small.png"
|
|
23
23
|
github: "bamr87"
|
|
24
24
|
website: "https://bamr87.github.io/zer0-mistakes/"
|
|
25
25
|
role: "Development Team"
|
|
@@ -35,7 +35,7 @@ bamr87:
|
|
|
35
35
|
guest:
|
|
36
36
|
name: "Guest Author"
|
|
37
37
|
bio: "A valued contributor to our community."
|
|
38
|
-
avatar: "/images/
|
|
38
|
+
avatar: "/images/gravatar-small.png"
|
|
39
39
|
role: "Guest Contributor"
|
|
40
40
|
|
|
41
41
|
# Add more authors as needed:
|