jekyll-theme-zer0 0.15.0 → 0.15.2

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.
@@ -0,0 +1,153 @@
1
+ # Configuration for organizing posts by section
2
+ # Used by: Content organization scripts and category-based navigation
3
+ # Purpose: Define valid sections for blog posts and their directory/URL mappings
4
+
5
+ sections:
6
+ "Development":
7
+ directory: "development"
8
+ icon: "bi-code-slash"
9
+ color: "#28a745"
10
+ aliases:
11
+ - "coding"
12
+ - "programming"
13
+ - "software"
14
+
15
+ "Web Development":
16
+ directory: "web-development"
17
+ icon: "bi-globe"
18
+ color: "#17a2b8"
19
+ aliases:
20
+ - "web"
21
+ - "frontend"
22
+ - "backend"
23
+
24
+ "DevOps":
25
+ directory: "devops"
26
+ icon: "bi-gear"
27
+ color: "#fd7e14"
28
+ aliases:
29
+ - "deployment"
30
+ - "ci/cd"
31
+ - "infrastructure"
32
+
33
+ "AI & Machine Learning":
34
+ directory: "ai-ml"
35
+ icon: "bi-robot"
36
+ color: "#6f42c1"
37
+ aliases:
38
+ - "ai"
39
+ - "machine learning"
40
+ - "artificial intelligence"
41
+
42
+ "System Administration":
43
+ directory: "sysadmin"
44
+ icon: "bi-server"
45
+ color: "#20c997"
46
+ aliases:
47
+ - "sysadmin"
48
+ - "administration"
49
+ - "systems"
50
+
51
+ "Data & Analytics":
52
+ directory: "data-analytics"
53
+ icon: "bi-bar-chart"
54
+ color: "#e83e8c"
55
+ aliases:
56
+ - "data"
57
+ - "analytics"
58
+ - "analysis"
59
+
60
+ "Tools & Environment":
61
+ directory: "tools"
62
+ icon: "bi-tools"
63
+ color: "#6c757d"
64
+ aliases:
65
+ - "tools"
66
+ - "environment"
67
+ - "setup"
68
+
69
+ "Tutorials":
70
+ directory: "tutorials"
71
+ icon: "bi-book"
72
+ color: "#007bff"
73
+ aliases:
74
+ - "tutorial"
75
+ - "guide"
76
+ - "how-to"
77
+
78
+ "Documentation":
79
+ directory: "documentation"
80
+ icon: "bi-journal-text"
81
+ color: "#343a40"
82
+ aliases:
83
+ - "docs"
84
+ - "reference"
85
+ - "manual"
86
+
87
+ "News & Updates":
88
+ directory: "news"
89
+ icon: "bi-newspaper"
90
+ color: "#dc3545"
91
+ aliases:
92
+ - "news"
93
+ - "updates"
94
+ - "announcements"
95
+
96
+ "Features":
97
+ directory: "features"
98
+ icon: "bi-stars"
99
+ color: "#ffc107"
100
+ aliases:
101
+ - "feature"
102
+ - "showcase"
103
+ - "highlight"
104
+
105
+ "Jekyll":
106
+ directory: "jekyll"
107
+ icon: "bi-gem"
108
+ color: "#cc0000"
109
+ aliases:
110
+ - "jekyll-theme"
111
+ - "static-site"
112
+ - "ruby"
113
+
114
+ "Docker":
115
+ directory: "docker"
116
+ icon: "bi-box"
117
+ color: "#2496ed"
118
+ aliases:
119
+ - "container"
120
+ - "containerization"
121
+ - "docker-compose"
122
+
123
+ "Bootstrap":
124
+ directory: "bootstrap"
125
+ icon: "bi-bootstrap"
126
+ color: "#7952b3"
127
+ aliases:
128
+ - "css-framework"
129
+ - "responsive"
130
+ - "ui"
131
+
132
+ # Default section for posts without a clear section
133
+ default_section: "development"
134
+
135
+ # Fallback mapping for categories to sections
136
+ category_to_section:
137
+ "How-To": "Tutorials"
138
+ "Testing": "Development"
139
+ "Tutorial": "Tutorials"
140
+ "deployment": "DevOps"
141
+ "github": "DevOps"
142
+ "jekyll-theme": "Jekyll"
143
+ "bootstrap": "Bootstrap"
144
+ "Quick Start": "Tutorials"
145
+ "quickstart": "Tutorials"
146
+ "about": "Documentation"
147
+ "themes": "Jekyll"
148
+
149
+ # URL patterns for sections
150
+ url_patterns:
151
+ use_section_in_url: true
152
+ section_separator: "/"
153
+ date_format: "/:year/:month/:day"
@@ -0,0 +1,112 @@
1
+ # Prerequisites Data File
2
+ # Used by: Content that requires prerequisite knowledge checks
3
+ # Purpose: Define common prerequisites for tutorials, guides, and educational content
4
+
5
+ prerequisites:
6
+ - title: "Basic command-line interface knowledge"
7
+ description: "Comfortable using terminal/command prompt"
8
+ level: "foundation"
9
+ category: "systems"
10
+
11
+ - title: "Git version control basics"
12
+ description: "Understanding of git clone, add, commit, push"
13
+ level: "foundation"
14
+ category: "development"
15
+
16
+ - title: "Text editor or IDE familiarity"
17
+ description: "Comfortable editing code in preferred editor"
18
+ level: "foundation"
19
+ category: "tools"
20
+
21
+ - title: "Basic programming concepts"
22
+ description: "Variables, functions, loops, conditionals"
23
+ level: "foundation"
24
+ category: "programming"
25
+
26
+ - title: "Web development basics"
27
+ description: "Understanding of HTML, CSS, and HTTP"
28
+ level: "web-foundation"
29
+ category: "web"
30
+
31
+ - title: "JavaScript fundamentals"
32
+ description: "ES6+ syntax, async/await, DOM manipulation"
33
+ level: "frontend"
34
+ category: "web"
35
+
36
+ - title: "Ruby basics"
37
+ description: "Basic Ruby syntax, gems, and Bundler"
38
+ level: "backend"
39
+ category: "programming"
40
+
41
+ - title: "Jekyll fundamentals"
42
+ description: "Understanding Jekyll structure, Liquid templating"
43
+ level: "framework"
44
+ category: "web"
45
+
46
+ - title: "Docker containerization"
47
+ description: "Container concepts, Dockerfile, docker-compose"
48
+ level: "devops"
49
+ category: "infrastructure"
50
+
51
+ - title: "Linux/Unix command line"
52
+ description: "File navigation, permissions, process management"
53
+ level: "systems"
54
+ category: "infrastructure"
55
+
56
+ - title: "HTTP/REST API concepts"
57
+ description: "Request/response, status codes, JSON"
58
+ level: "api"
59
+ category: "web"
60
+
61
+ - title: "YAML syntax"
62
+ description: "Understanding YAML structure for configuration files"
63
+ level: "foundation"
64
+ category: "tools"
65
+
66
+ - title: "Markdown formatting"
67
+ description: "Writing content with Markdown syntax"
68
+ level: "foundation"
69
+ category: "content"
70
+
71
+ - title: "Bootstrap 5 basics"
72
+ description: "Understanding Bootstrap grid, components, utilities"
73
+ level: "frontend"
74
+ category: "web"
75
+
76
+ - title: "Sass/SCSS fundamentals"
77
+ description: "CSS preprocessing with variables, mixins, nesting"
78
+ level: "frontend"
79
+ category: "web"
80
+
81
+ - title: "GitHub Pages understanding"
82
+ description: "Static site hosting, custom domains, deployment"
83
+ level: "deployment"
84
+ category: "infrastructure"
85
+
86
+ - title: "Testing methodologies"
87
+ description: "Unit tests, integration tests, TDD concepts"
88
+ level: "quality"
89
+ category: "development"
90
+
91
+ # Prerequisite levels (ordered by complexity)
92
+ levels:
93
+ - foundation
94
+ - web-foundation
95
+ - frontend
96
+ - backend
97
+ - framework
98
+ - devops
99
+ - systems
100
+ - api
101
+ - deployment
102
+ - quality
103
+
104
+ # Prerequisite categories
105
+ categories:
106
+ - systems
107
+ - development
108
+ - tools
109
+ - programming
110
+ - web
111
+ - infrastructure
112
+ - content
@@ -0,0 +1,203 @@
1
+ # Configuration for content statistics generation
2
+ # This file defines the mappings and categories used to analyze posts
3
+ # Used by: _data/generate_statistics.rb
4
+ # Purpose: Configurable keyword mappings for content analysis
5
+
6
+ # Focus area mappings - maps keywords to focus areas
7
+ focus_areas:
8
+ "AI & Machine Learning":
9
+ - ai
10
+ - ml
11
+ - machine-learning
12
+ - artificial-intelligence
13
+ - ai-assisted
14
+ - gpt
15
+ - chatgpt
16
+ - neural
17
+ - automation
18
+ - aipd
19
+
20
+ "Web Development":
21
+ - web
22
+ - javascript
23
+ - html
24
+ - css
25
+ - react
26
+ - angular
27
+ - django
28
+ - flask
29
+ - jekyll
30
+ - frontend
31
+ - backend
32
+ - fullstack
33
+ - api
34
+ - rest
35
+ - bootstrap
36
+
37
+ "DevOps & Infrastructure":
38
+ - devops
39
+ - docker
40
+ - kubernetes
41
+ - ci/cd
42
+ - deployment
43
+ - infrastructure
44
+ - containers
45
+ - orchestration
46
+ - pipeline
47
+ - github-actions
48
+ - travis
49
+ - netlify
50
+
51
+ "System Administration":
52
+ - linux
53
+ - windows
54
+ - macos
55
+ - server
56
+ - admin
57
+ - system
58
+ - dual-boot
59
+ - installation
60
+ - configuration
61
+
62
+ "Programming & Scripting":
63
+ - programming
64
+ - scripting
65
+ - python
66
+ - bash
67
+ - shell
68
+ - coding
69
+ - development
70
+ - refactoring
71
+ - architecture
72
+ - ruby
73
+ - typescript
74
+
75
+ "Data & Analytics":
76
+ - data
77
+ - database
78
+ - analytics
79
+ - scraping
80
+ - analysis
81
+ - processing
82
+ - statistics
83
+
84
+ "Tools & Development Environment":
85
+ - tools
86
+ - vscode
87
+ - editor
88
+ - environment
89
+ - productivity
90
+ - extension
91
+ - workflow
92
+
93
+ "Documentation & Content":
94
+ - documentation
95
+ - docs
96
+ - tutorial
97
+ - guide
98
+ - how-to
99
+ - mermaid
100
+ - diagram
101
+
102
+ "Creative & Experimental":
103
+ - creative
104
+ - experimental
105
+ - art
106
+ - music
107
+ - fiction
108
+ - storytelling
109
+ - themes
110
+
111
+ # Skill level mappings
112
+ skill_levels:
113
+ beginner:
114
+ - beginner
115
+ - intro
116
+ - introduction
117
+ - getting-started
118
+ - basics
119
+ - fundamentals
120
+ - first
121
+ - setup
122
+ - quickstart
123
+
124
+ intermediate:
125
+ - intermediate
126
+ - advanced-beginner
127
+ - practical
128
+ - hands-on
129
+ - implementation
130
+ - building
131
+
132
+ advanced:
133
+ - advanced
134
+ - deep-dive
135
+ - optimization
136
+ - performance
137
+ - architecture
138
+ - complex
139
+ - sophisticated
140
+
141
+ expert:
142
+ - expert
143
+ - research
144
+ - cutting-edge
145
+ - innovation
146
+ - meta
147
+ - engine
148
+ - evolution
149
+
150
+ # Content type mappings
151
+ content_types:
152
+ "Tutorial":
153
+ - tutorial
154
+ - guide
155
+ - how-to
156
+ - step-by-step
157
+ - walkthrough
158
+ - setup
159
+
160
+ "Article":
161
+ - article
162
+ - analysis
163
+ - insights
164
+ - deep-dive
165
+ - discussion
166
+ - overview
167
+
168
+ "Journal Entry":
169
+ - journal
170
+ - learning-journey
171
+ - diary
172
+ - chronicle
173
+ - post
174
+
175
+ "Documentation":
176
+ - documentation
177
+ - reference
178
+ - api
179
+ - manual
180
+ - specification
181
+
182
+ "News/Update":
183
+ - news
184
+ - update
185
+ - announcement
186
+ - release
187
+ - changelog
188
+
189
+ # Display preferences for statistics
190
+ display:
191
+ # Maximum items to show in top lists
192
+ max_categories: 10
193
+ max_tags: 15
194
+ max_authors: 5
195
+
196
+ # Whether to show percentages
197
+ show_percentages: true
198
+
199
+ # Minimum count to display an item
200
+ min_count_threshold: 1
201
+
202
+ # Highlight threshold for "popular" items
203
+ popular_threshold: 5