jekyll-theme-zer0 0.2.1 → 0.5.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 +56 -0
- data/README.md +18 -4
- data/_data/content_statistics.yml +401 -0
- data/_data/generate_statistics.rb +275 -0
- data/_data/navigation/about.yml +2 -0
- data/_data/navigation/home.yml +15 -0
- data/_data/navigation/main.yml +2 -3
- data/_includes/components/mermaid.html +101 -0
- data/_includes/content/sitemap.html +935 -108
- data/_includes/core/head.html +9 -4
- data/_includes/navigation/navbar.html +6 -0
- data/_includes/stats/README.md +273 -0
- data/_includes/stats/stats-categories.html +146 -0
- data/_includes/stats/stats-header.html +123 -0
- data/_includes/stats/stats-metrics.html +243 -0
- data/_includes/stats/stats-no-data.html +180 -0
- data/_includes/stats/stats-overview.html +119 -0
- data/_includes/stats/stats-tags.html +142 -0
- data/_layouts/README.md +8 -0
- data/_layouts/sitemap-collection.html +500 -0
- data/_layouts/stats.html +178 -0
- data/assets/css/stats.css +392 -0
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f9783116e6022a385764bef959a6f423d4b42ff3a9dfcfe480363276aef90f2
|
|
4
|
+
data.tar.gz: 124638682f244671c07e058ba24a65b9418b20c351b06858daef27aa37a1695b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae9ce6f72394b0042ba56ac26d9f65edd77cfda2f8a7bdbdb341acbe0f4ae92902a46995e385b67bbd788f0269b5c96e3604b44fb084a2fd7383c3ae30715d35
|
|
7
|
+
data.tar.gz: 96b6bfdcf3c41df20ca2d3e73ea434838dfb0ac632961dfdae5f2ac57cbf5748620a03db22837b76e2b103a7e80d6cdc257f7cd7174a0aa985f386d23437fb43
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,59 @@
|
|
|
1
|
+
## [0.4.0] - 2025-10-10
|
|
2
|
+
|
|
3
|
+
## [0.5.0] - 2025-10-25
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- comprehensive sitemap integration with unified layout and enhanced statistics
|
|
7
|
+
- Add comprehensive AI-assisted development guide for Zer0-Mistakes theme
|
|
8
|
+
- Add VSCode configuration files for GitHub Copilot and related settings
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Update .gitignore to ignore all log files in the logs directory
|
|
12
|
+
- Bump version to 0.5.0 and add release summary for v0.4.0
|
|
13
|
+
|
|
14
|
+
### Other
|
|
15
|
+
- removing logs
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Added
|
|
20
|
+
- **📊 Comprehensive Site Statistics Dashboard**: Complete analytics system for content insights
|
|
21
|
+
- Dynamic statistics generation from site content using Ruby script
|
|
22
|
+
- Real-time analytics showing 61 content pieces, 19 categories, 47 tags, 43,601 words
|
|
23
|
+
- Interactive Bootstrap 5-based dashboard with responsive design
|
|
24
|
+
- Modular component architecture with 6 specialized statistics components
|
|
25
|
+
- Intelligent activity level calculations based on actual data distribution
|
|
26
|
+
- Professional tag cloud visualization with dynamic sizing
|
|
27
|
+
- Mobile-optimized layout with smooth animations and transitions
|
|
28
|
+
- **🔧 Advanced Data Processing Engine**: Automated content analysis and metric generation
|
|
29
|
+
- Ruby-based statistics generator script analyzing posts, pages, and collections
|
|
30
|
+
- YAML data file generation with comprehensive site metrics
|
|
31
|
+
- Smart categorization and tagging analysis with usage frequency tracking
|
|
32
|
+
- Monthly content distribution analysis and trend identification
|
|
33
|
+
- **🎨 Enhanced User Experience Components**: Professional dashboard interface
|
|
34
|
+
- Bootstrap 5-first design approach with minimal custom CSS
|
|
35
|
+
- Card-based layout for metric organization and visual hierarchy
|
|
36
|
+
- Interactive tooltips and progress indicators for enhanced usability
|
|
37
|
+
- Print-friendly styling and accessibility compliance (ARIA support)
|
|
38
|
+
- Smooth scroll navigation and fade-in animations for modern UX
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
- **📈 Activity Level Intelligence**: Dynamic threshold calculation replacing static values
|
|
42
|
+
- Categories: High activity (≥70% of max), Medium (≥40% of max), Low (remainder)
|
|
43
|
+
- Tags: Frequently used (≥60% of max), Moderately used (≥20% of max), Occasionally used (remainder)
|
|
44
|
+
- Real-time adaptation to content distribution patterns
|
|
45
|
+
- **🏗️ Template Architecture**: Modular include system for maintainable code
|
|
46
|
+
- Separated concerns across 6 specialized components
|
|
47
|
+
- Clean Liquid template syntax with proper error handling
|
|
48
|
+
- Optimized data processing without complex sorting operations
|
|
49
|
+
|
|
50
|
+
### Fixed
|
|
51
|
+
- **🐛 Data Display Issues**: Resolved template rendering and data access problems
|
|
52
|
+
- Fixed Liquid template syntax errors causing empty displays
|
|
53
|
+
- Corrected data structure references across all components
|
|
54
|
+
- Eliminated type conversion errors in sorting operations
|
|
55
|
+
- Proper handling of nested array data structures
|
|
56
|
+
|
|
1
57
|
## [0.2.1] - 2025-09-30
|
|
2
58
|
|
|
3
59
|
### Added
|
data/README.md
CHANGED
|
@@ -14,7 +14,7 @@ categories:
|
|
|
14
14
|
- docker
|
|
15
15
|
- bootstrap
|
|
16
16
|
created: 2024-02-10T23:51:11.480Z
|
|
17
|
-
lastmod: 2025-
|
|
17
|
+
lastmod: 2025-10-19T00:00:00.000Z
|
|
18
18
|
draft: false
|
|
19
19
|
permalink: /zer0/
|
|
20
20
|
slug: zer0
|
|
@@ -37,9 +37,9 @@ preview: /images/zer0-mistakes-docker.png
|
|
|
37
37
|
|
|
38
38
|
# 🚀 zer0-mistakes Jekyll Theme
|
|
39
39
|
|
|
40
|
-
**Professional Jekyll theme** with AI-powered installation, Docker-first development, automated release management, and
|
|
40
|
+
**Professional Jekyll theme** with AI-powered installation, Docker-first development, automated release management, and **VS Code Copilot optimization**. Built for developers who value reliability, modern workflows, AI-assisted development, and zero-configuration setup.
|
|
41
41
|
|
|
42
|
-
> **🎯 95% installation success rate** • **⚡ 2-5 minute setup** • **🐳 Universal Docker compatibility** • **🤖 AI-powered error recovery** • **🚀 Automated releases with semantic versioning**
|
|
42
|
+
> **🎯 95% installation success rate** • **⚡ 2-5 minute setup** • **🐳 Universal Docker compatibility** • **🤖 AI-powered error recovery** • **🚀 Automated releases with semantic versioning** • **💡 VS Code Copilot optimized**
|
|
43
43
|
|
|
44
44
|
## 🚀 Quick Start
|
|
45
45
|
|
|
@@ -110,12 +110,14 @@ docker-compose up
|
|
|
110
110
|
|
|
111
111
|
## ✨ What Makes This Special
|
|
112
112
|
|
|
113
|
-
### 🤖 **AI-Powered Intelligence**
|
|
113
|
+
### 🤖 **AI-Powered Intelligence & VS Code Copilot Integration**
|
|
114
114
|
|
|
115
115
|
- **Smart Error Detection** - Automatically identifies and fixes common Jekyll issues
|
|
116
116
|
- **Platform Optimization** - Detects Apple Silicon, Intel, and Linux configurations
|
|
117
117
|
- **Self-Healing Setup** - Recovers from installation failures automatically
|
|
118
118
|
- **Intelligent Diagnostics** - Provides actionable solutions for problems
|
|
119
|
+
- **VS Code Copilot Optimized** - Structured for enhanced AI-assisted development
|
|
120
|
+
- **AI Development Workflows** - Built-in patterns for maximum AI productivity
|
|
119
121
|
|
|
120
122
|
### 🐳 **Docker-First Development**
|
|
121
123
|
|
|
@@ -149,6 +151,18 @@ docker-compose up
|
|
|
149
151
|
|
|
150
152
|
> 📖 **Learn more**: [Automated Version System Documentation](AUTOMATED_VERSION_SYSTEM.md)
|
|
151
153
|
|
|
154
|
+
### 📊 **Mermaid Diagram Integration** *(New in v0.3.0)*
|
|
155
|
+
|
|
156
|
+
- **Complete Diagram Support** - Flowcharts, sequence diagrams, class diagrams, state diagrams, ER diagrams, Gantt charts, pie charts, git graphs, journey diagrams, and mindmaps
|
|
157
|
+
- **GitHub Pages Compatible** - Works seamlessly with both local development and GitHub Pages deployment
|
|
158
|
+
- **Conditional Loading** - Only loads Mermaid when needed, optimizing performance
|
|
159
|
+
- **Responsive Design** - Diagrams automatically scale across all devices
|
|
160
|
+
- **Dark Mode Support** - Forest theme optimized for dark mode compatibility
|
|
161
|
+
- **Comprehensive Documentation** - Complete user guide with live examples and troubleshooting
|
|
162
|
+
- **Automated Testing** - 16 automated tests covering all aspects of functionality
|
|
163
|
+
|
|
164
|
+
> 📖 **Learn more**: [Mermaid Documentation](/docs/jekyll/mermaid/) • [Integration Tutorial](/docs/jekyll/jekyll-diagram-with-mermaid/) • [Test Suite](/docs/jekyll/mermaid-test-suite/)
|
|
165
|
+
|
|
152
166
|
## 📋 Prerequisites
|
|
153
167
|
|
|
154
168
|
Before you begin, ensure you have:
|
|
@@ -0,0 +1,401 @@
|
|
|
1
|
+
---
|
|
2
|
+
generated_at: '2025-10-10 16:52:40'
|
|
3
|
+
overview:
|
|
4
|
+
total_posts: 2
|
|
5
|
+
total_pages: 60
|
|
6
|
+
total_content: 62
|
|
7
|
+
total_categories: 19
|
|
8
|
+
total_tags: 47
|
|
9
|
+
total_words: 45101
|
|
10
|
+
average_words_per_post: 727.4
|
|
11
|
+
categories:
|
|
12
|
+
- - Documentation
|
|
13
|
+
- 4
|
|
14
|
+
- - How-To
|
|
15
|
+
- 3
|
|
16
|
+
- - Development
|
|
17
|
+
- 3
|
|
18
|
+
- - docker
|
|
19
|
+
- 2
|
|
20
|
+
- - quickstart
|
|
21
|
+
- 2
|
|
22
|
+
- - Features
|
|
23
|
+
- 2
|
|
24
|
+
- - gpt breaking
|
|
25
|
+
- 1
|
|
26
|
+
- - Testing
|
|
27
|
+
- 1
|
|
28
|
+
- - Tutorial
|
|
29
|
+
- 1
|
|
30
|
+
- - News-Demo
|
|
31
|
+
- 1
|
|
32
|
+
- - deployment
|
|
33
|
+
- 1
|
|
34
|
+
- - github
|
|
35
|
+
- 1
|
|
36
|
+
- - jekyll
|
|
37
|
+
- 1
|
|
38
|
+
- - Quick Start
|
|
39
|
+
- 1
|
|
40
|
+
- - jekyll-theme
|
|
41
|
+
- 1
|
|
42
|
+
- - bootstrap
|
|
43
|
+
- 1
|
|
44
|
+
- - about
|
|
45
|
+
- 1
|
|
46
|
+
- - development
|
|
47
|
+
- 1
|
|
48
|
+
- - themes
|
|
49
|
+
- 1
|
|
50
|
+
tags:
|
|
51
|
+
- - jekyll
|
|
52
|
+
- 15
|
|
53
|
+
- - mermaid
|
|
54
|
+
- 4
|
|
55
|
+
- - docker
|
|
56
|
+
- 4
|
|
57
|
+
- - bootstrap
|
|
58
|
+
- 3
|
|
59
|
+
- - tutorial
|
|
60
|
+
- 2
|
|
61
|
+
- - ruby
|
|
62
|
+
- 2
|
|
63
|
+
- - automation
|
|
64
|
+
- 2
|
|
65
|
+
- - ci/cd
|
|
66
|
+
- 2
|
|
67
|
+
- - aipd
|
|
68
|
+
- 2
|
|
69
|
+
- - devops
|
|
70
|
+
- 2
|
|
71
|
+
- - dff
|
|
72
|
+
- 2
|
|
73
|
+
- - dry
|
|
74
|
+
- 2
|
|
75
|
+
- - kis
|
|
76
|
+
- 2
|
|
77
|
+
- - news-site
|
|
78
|
+
- 1
|
|
79
|
+
- - web-development
|
|
80
|
+
- 1
|
|
81
|
+
- - port
|
|
82
|
+
- 1
|
|
83
|
+
- - travis ci
|
|
84
|
+
- 1
|
|
85
|
+
- - github pages
|
|
86
|
+
- 1
|
|
87
|
+
- - custom domain
|
|
88
|
+
- 1
|
|
89
|
+
- - netlify
|
|
90
|
+
- 1
|
|
91
|
+
- - disqus
|
|
92
|
+
- 1
|
|
93
|
+
- - comments
|
|
94
|
+
- 1
|
|
95
|
+
- - diagram
|
|
96
|
+
- 1
|
|
97
|
+
- - highlighting
|
|
98
|
+
- 1
|
|
99
|
+
- - highlight.js
|
|
100
|
+
- 1
|
|
101
|
+
- - liquid
|
|
102
|
+
- 1
|
|
103
|
+
- - mathjax
|
|
104
|
+
- 1
|
|
105
|
+
- - mathematic
|
|
106
|
+
- 1
|
|
107
|
+
- - pagination
|
|
108
|
+
- 1
|
|
109
|
+
- - performance
|
|
110
|
+
- 1
|
|
111
|
+
- - nanobar
|
|
112
|
+
- 1
|
|
113
|
+
- - progress bar
|
|
114
|
+
- 1
|
|
115
|
+
- - security
|
|
116
|
+
- 1
|
|
117
|
+
- - sharethis
|
|
118
|
+
- 1
|
|
119
|
+
- - social share
|
|
120
|
+
- 1
|
|
121
|
+
- - markdown
|
|
122
|
+
- 1
|
|
123
|
+
- - testing
|
|
124
|
+
- 1
|
|
125
|
+
- - quality assurance
|
|
126
|
+
- 1
|
|
127
|
+
- - diagrams
|
|
128
|
+
- 1
|
|
129
|
+
- - documentation
|
|
130
|
+
- 1
|
|
131
|
+
- - setup
|
|
132
|
+
- 1
|
|
133
|
+
- - development
|
|
134
|
+
- 1
|
|
135
|
+
- - ai-powered
|
|
136
|
+
- 1
|
|
137
|
+
- - remote-theme
|
|
138
|
+
- 1
|
|
139
|
+
- - github-pages
|
|
140
|
+
- 1
|
|
141
|
+
- - about
|
|
142
|
+
- 1
|
|
143
|
+
- - ai-automation
|
|
144
|
+
- 1
|
|
145
|
+
content_breakdown:
|
|
146
|
+
post: 2
|
|
147
|
+
page: 60
|
|
148
|
+
monthly_distribution:
|
|
149
|
+
2016-01: 2
|
|
150
|
+
2016-11: 1
|
|
151
|
+
2017-08: 2
|
|
152
|
+
2017-12: 1
|
|
153
|
+
2018-09: 1
|
|
154
|
+
2019-06: 7
|
|
155
|
+
2022-06: 2
|
|
156
|
+
2023-03: 1
|
|
157
|
+
2023-11: 1
|
|
158
|
+
2024-03: 1
|
|
159
|
+
2024-05: 1
|
|
160
|
+
2024-06: 1
|
|
161
|
+
2025-01: 3
|
|
162
|
+
2025-07: 2
|
|
163
|
+
2025-09: 3
|
|
164
|
+
2025-10: 1
|
|
165
|
+
word_statistics:
|
|
166
|
+
2000-01-01-index.md:
|
|
167
|
+
words: 1033
|
|
168
|
+
type: post
|
|
169
|
+
title: 'Zer0-Mistakes News Network: Building Dynamic News Sites with Jekyll'
|
|
170
|
+
2024-06-17-wizard-topples-capitalist-dominance-ingeniously.md:
|
|
171
|
+
words: 298
|
|
172
|
+
type: post
|
|
173
|
+
title: Wizard Topples Capitalist Dominance Ingeniously
|
|
174
|
+
STATS_ENHANCEMENT_SUMMARY.md:
|
|
175
|
+
words: 801
|
|
176
|
+
type: page
|
|
177
|
+
title: STATS_ENHANCEMENT_SUMMARY
|
|
178
|
+
add-floating-back-to-top-button.md:
|
|
179
|
+
words: 293
|
|
180
|
+
type: page
|
|
181
|
+
title: Add Floating Back-to-Top button
|
|
182
|
+
automated-version-build-system.md:
|
|
183
|
+
words: 1027
|
|
184
|
+
type: page
|
|
185
|
+
title: Comprehensive Gem Automation System
|
|
186
|
+
comprehensive-gem-automation-system.md:
|
|
187
|
+
words: 1363
|
|
188
|
+
type: page
|
|
189
|
+
title: Comprehensive Gem Automation System
|
|
190
|
+
index.md:
|
|
191
|
+
words: 596
|
|
192
|
+
type: page
|
|
193
|
+
title: zer0-mistakes Jekyll Theme
|
|
194
|
+
jekyll.md:
|
|
195
|
+
words: 4387
|
|
196
|
+
type: page
|
|
197
|
+
title: Jeykll
|
|
198
|
+
statistics-dashboard.md:
|
|
199
|
+
words: 1178
|
|
200
|
+
type: page
|
|
201
|
+
title: Statistics Dashboard Feature
|
|
202
|
+
bamr87.md:
|
|
203
|
+
words: 65
|
|
204
|
+
type: page
|
|
205
|
+
title: bamr87
|
|
206
|
+
config.md:
|
|
207
|
+
words: 56
|
|
208
|
+
type: page
|
|
209
|
+
title: Jekyll Configuration
|
|
210
|
+
sitemap.md:
|
|
211
|
+
words: 16
|
|
212
|
+
type: page
|
|
213
|
+
title: Sitemap
|
|
214
|
+
stats.md:
|
|
215
|
+
words: 161
|
|
216
|
+
type: page
|
|
217
|
+
title: Site Statistics Portal
|
|
218
|
+
theme.md:
|
|
219
|
+
words: 26
|
|
220
|
+
type: page
|
|
221
|
+
title: Bootstrap Theme Examples
|
|
222
|
+
footer.md:
|
|
223
|
+
words: 1501
|
|
224
|
+
type: page
|
|
225
|
+
title: Footer Layout
|
|
226
|
+
cannot-start-jekyll-at-specific-port.md:
|
|
227
|
+
words: 301
|
|
228
|
+
type: page
|
|
229
|
+
title: Cannot Start Jekyll at Specific Port
|
|
230
|
+
continuously-deploy-jekyll-website-to-gitHub-pages-with-travis-ci.md:
|
|
231
|
+
words: 598
|
|
232
|
+
type: page
|
|
233
|
+
title: Continuously Deploy Jekyll to GitHub Pages with Travis-CI
|
|
234
|
+
deploying-jekyll-website-to-netlify.md:
|
|
235
|
+
words: 417
|
|
236
|
+
type: page
|
|
237
|
+
title: Deploying Jekyll Website to Netlify
|
|
238
|
+
deploying-personal-website-with-custom-domain.md:
|
|
239
|
+
words: 273
|
|
240
|
+
type: page
|
|
241
|
+
title: Deploying Personal Website with Custom Domain
|
|
242
|
+
jekyll-comments-with-disqus.md:
|
|
243
|
+
words: 542
|
|
244
|
+
type: page
|
|
245
|
+
title: Jekyll - Comments with Disqus
|
|
246
|
+
jekyll-config.md:
|
|
247
|
+
words: 1335
|
|
248
|
+
type: page
|
|
249
|
+
title: Configuration Options | Jekyll • Simple, blog-aware, static sites
|
|
250
|
+
jekyll-diagram-with-mermaid.md:
|
|
251
|
+
words: 583
|
|
252
|
+
type: page
|
|
253
|
+
title: Jekyll Mermaid Integration Tutorial
|
|
254
|
+
jekyll-frontmatter-cms.md:
|
|
255
|
+
words: 16
|
|
256
|
+
type: page
|
|
257
|
+
title: Jekyll Frontmatter CMS
|
|
258
|
+
jekyll-highlighting.md:
|
|
259
|
+
words: 467
|
|
260
|
+
type: page
|
|
261
|
+
title: Jekyll - Highlighting
|
|
262
|
+
jekyll-liquid.md:
|
|
263
|
+
words: 404
|
|
264
|
+
type: page
|
|
265
|
+
title: Jekyll - Liquid
|
|
266
|
+
jekyll-math-symbols-with-mathjax.md:
|
|
267
|
+
words: 678
|
|
268
|
+
type: page
|
|
269
|
+
title: Jekyll - Math Symbols with MathJax
|
|
270
|
+
jekyll-pagination.md:
|
|
271
|
+
words: 493
|
|
272
|
+
type: page
|
|
273
|
+
title: Jekyll - Pagination
|
|
274
|
+
jekyll-performance-optimization.md:
|
|
275
|
+
words: 243
|
|
276
|
+
type: page
|
|
277
|
+
title: Jekyll - Performance Optimization
|
|
278
|
+
jekyll-progress-bar.md:
|
|
279
|
+
words: 237
|
|
280
|
+
type: page
|
|
281
|
+
title: Jekyll - Progress Bar
|
|
282
|
+
jekyll-security.md:
|
|
283
|
+
words: 395
|
|
284
|
+
type: page
|
|
285
|
+
title: Jekyll - Security
|
|
286
|
+
jekyll-social-share-buttons-with-sharethis.md:
|
|
287
|
+
words: 363
|
|
288
|
+
type: page
|
|
289
|
+
title: Jekyll - Social Share Buttons with ShareThis
|
|
290
|
+
jekyll-social-share-buttons.md:
|
|
291
|
+
words: 438
|
|
292
|
+
type: page
|
|
293
|
+
title: Jekyll - Social Share Buttons
|
|
294
|
+
jekyll-usage-and-customization.md:
|
|
295
|
+
words: 1654
|
|
296
|
+
type: page
|
|
297
|
+
title: Jekyll - Usage and Customization
|
|
298
|
+
mermaid-native-markdown.md:
|
|
299
|
+
words: 747
|
|
300
|
+
type: page
|
|
301
|
+
title: Mermaid with Native Markdown Syntax
|
|
302
|
+
mermaid-test-suite.md:
|
|
303
|
+
words: 740
|
|
304
|
+
type: page
|
|
305
|
+
title: Mermaid Test Suite
|
|
306
|
+
mermaid.md:
|
|
307
|
+
words: 995
|
|
308
|
+
type: page
|
|
309
|
+
title: Mermaid Diagrams in Jekyll
|
|
310
|
+
github-setup.md:
|
|
311
|
+
words: 1046
|
|
312
|
+
type: page
|
|
313
|
+
title: GitHub Setup & Deployment
|
|
314
|
+
jekyll-setup.md:
|
|
315
|
+
words: 1290
|
|
316
|
+
type: page
|
|
317
|
+
title: Jekyll Setup
|
|
318
|
+
machine-setup.md:
|
|
319
|
+
words: 3347
|
|
320
|
+
type: page
|
|
321
|
+
title: Machine Setup
|
|
322
|
+
index.html:
|
|
323
|
+
words: 213
|
|
324
|
+
type: page
|
|
325
|
+
title: All posts
|
|
326
|
+
AUTOMATED_VERSION_SYSTEM.md:
|
|
327
|
+
words: 734
|
|
328
|
+
type: page
|
|
329
|
+
title: AUTOMATED_VERSION_SYSTEM
|
|
330
|
+
CHANGELOG-MERMAID-v2.md:
|
|
331
|
+
words: 1410
|
|
332
|
+
type: page
|
|
333
|
+
title: CHANGELOG-MERMAID-v2
|
|
334
|
+
CHANGELOG.md:
|
|
335
|
+
words: 1122
|
|
336
|
+
type: page
|
|
337
|
+
title: CHANGELOG
|
|
338
|
+
CICD_STATUS_REPORT.md:
|
|
339
|
+
words: 1161
|
|
340
|
+
type: page
|
|
341
|
+
title: CICD_STATUS_REPORT
|
|
342
|
+
CODE_OF_CONDUCT.md:
|
|
343
|
+
words: 1004
|
|
344
|
+
type: page
|
|
345
|
+
title: CODE_OF_CONDUCT
|
|
346
|
+
CONTRIBUTING.md:
|
|
347
|
+
words: 3199
|
|
348
|
+
type: page
|
|
349
|
+
title: CONTRIBUTING
|
|
350
|
+
IMPLEMENTATION_SUMMARY.md:
|
|
351
|
+
words: 902
|
|
352
|
+
type: page
|
|
353
|
+
title: IMPLEMENTATION_SUMMARY
|
|
354
|
+
README.md:
|
|
355
|
+
words: 1904
|
|
356
|
+
type: page
|
|
357
|
+
title: zer0-mistakes
|
|
358
|
+
RELEASE-NOTES-v0.3.0.md:
|
|
359
|
+
words: 1136
|
|
360
|
+
type: page
|
|
361
|
+
title: RELEASE-NOTES-v0.3.0
|
|
362
|
+
URL_CONFIGURATION_GUIDE.md:
|
|
363
|
+
words: 451
|
|
364
|
+
type: page
|
|
365
|
+
title: URL_CONFIGURATION_GUIDE
|
|
366
|
+
about.md:
|
|
367
|
+
words: 78
|
|
368
|
+
type: page
|
|
369
|
+
title: About
|
|
370
|
+
blog.md:
|
|
371
|
+
words: 51
|
|
372
|
+
type: page
|
|
373
|
+
title: Blog
|
|
374
|
+
contact.md:
|
|
375
|
+
words: 45
|
|
376
|
+
type: page
|
|
377
|
+
title: Contact
|
|
378
|
+
privacy-policy.md:
|
|
379
|
+
words: 38
|
|
380
|
+
type: page
|
|
381
|
+
title: Privacy Policy
|
|
382
|
+
release_notes.md:
|
|
383
|
+
words: 38
|
|
384
|
+
type: page
|
|
385
|
+
title: release_notes
|
|
386
|
+
seed_prompt.md:
|
|
387
|
+
words: 991
|
|
388
|
+
type: page
|
|
389
|
+
title: seed_prompt
|
|
390
|
+
services.md:
|
|
391
|
+
words: 48
|
|
392
|
+
type: page
|
|
393
|
+
title: Services
|
|
394
|
+
terms-of-service.md:
|
|
395
|
+
words: 41
|
|
396
|
+
type: page
|
|
397
|
+
title: Terms of Service
|
|
398
|
+
404.html:
|
|
399
|
+
words: 132
|
|
400
|
+
type: page
|
|
401
|
+
title: '404'
|