jekyll-theme-zer0 1.19.1 → 1.20.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +395 -0
- data/README.md +27 -19
- data/_data/authors.yml +154 -5
- data/_data/backlog.yml +5 -5
- data/_data/content_statistics.yml +273 -297
- data/_data/features.yml +4 -25
- data/_data/navigation/README.md +24 -0
- data/_data/navigation/about.yml +2 -0
- data/_data/navigation/main.yml +2 -7
- data/_data/roadmap.yml +86 -12
- data/_includes/components/author-avatar-url.html +28 -0
- data/_includes/components/author-bio.html +86 -0
- data/_includes/components/author-card.html +184 -121
- data/_includes/components/author-eeat.html +10 -4
- data/_includes/components/info-section.html +1 -1
- data/_includes/components/mermaid.html +0 -3
- data/_includes/components/post-card.html +19 -9
- data/_includes/content/giscus.html +3 -2
- data/_includes/core/footer-fabs.html +28 -0
- data/_includes/core/footer.html +7 -17
- data/_includes/core/head.html +2 -2
- data/_includes/navigation/breadcrumbs.html +20 -2
- data/_includes/navigation/local-graph.html +18 -2
- data/_includes/obsidian/full-graph.html +4 -6
- data/_layouts/article.html +44 -74
- data/_layouts/author.html +274 -0
- data/_layouts/authors.html +55 -0
- data/_layouts/news.html +3 -3
- data/_layouts/note.html +21 -6
- data/_layouts/notebook.html +21 -6
- data/_layouts/root.html +31 -17
- data/_layouts/section.html +3 -3
- data/_plugins/author_pages_generator.rb +121 -0
- data/_sass/components/_author.scss +219 -0
- data/_sass/components/_content-tables.scss +16 -1
- data/_sass/components/_notes-index.scss +102 -0
- data/_sass/components/_search-modal.scss +40 -0
- data/_sass/components/_ui-enhancements.scss +570 -0
- data/_sass/core/_docs-code-examples.scss +463 -0
- data/_sass/core/_docs-layout.scss +0 -453
- data/_sass/core/_navbar.scss +253 -0
- data/_sass/core/_sidebar-extras.scss +79 -0
- data/_sass/core/_toc.scss +87 -0
- data/_sass/core/_variables.scss +7 -142
- data/_sass/custom.scss +24 -1122
- data/_sass/layouts/_global-chrome.scss +59 -0
- data/assets/css/main.scss +19 -2
- data/assets/js/author-profile.js +190 -0
- data/assets/js/modules/navigation/navbar.js +104 -0
- data/assets/js/obsidian-graph.js +2 -2
- data/assets/js/obsidian-local-graph.js +11 -5
- data/assets/vendor/cytoscape/cytoscape.min.js +32 -0
- data/scripts/README.md +39 -0
- data/scripts/bin/validate +11 -1
- data/scripts/dev/css-diff.sh +49 -0
- data/scripts/dev/shot.js +37 -0
- data/scripts/features/generate-preview-images +110 -6
- data/scripts/features/pixelate-preview-images +126 -0
- data/scripts/features/pixelate_images.py +662 -0
- data/scripts/github-setup.sh +0 -0
- data/scripts/lib/preview_generator.py +47 -3
- data/scripts/pixelate-preview-images.sh +12 -0
- data/scripts/test/integration/auto-version +10 -8
- data/scripts/test/lib/run_tests.sh +2 -0
- data/scripts/test/lib/test_content_review.sh +205 -0
- data/scripts/test/lib/test_pixelate_images.sh +108 -0
- metadata +25 -20
- data/_data/hub.yml +0 -68
- data/_data/hub_index.yml +0 -203
- data/_data/navigation/hub.yml +0 -110
- data/assets/vendor/font-awesome/css/all.min.css +0 -9
- data/assets/vendor/font-awesome/webfonts/fa-brands-400.ttf +0 -0
- data/assets/vendor/font-awesome/webfonts/fa-brands-400.woff2 +0 -0
- data/assets/vendor/font-awesome/webfonts/fa-regular-400.ttf +0 -0
- data/assets/vendor/font-awesome/webfonts/fa-regular-400.woff2 +0 -0
- data/assets/vendor/font-awesome/webfonts/fa-solid-900.ttf +0 -0
- data/assets/vendor/font-awesome/webfonts/fa-solid-900.woff2 +0 -0
- data/assets/vendor/font-awesome/webfonts/fa-v4compatibility.ttf +0 -0
- data/assets/vendor/font-awesome/webfonts/fa-v4compatibility.woff2 +0 -0
- data/assets/vendor/jquery/jquery-3.7.1.min.js +0 -2
- data/scripts/lib/hub.rb +0 -208
- data/scripts/provision-org-sites.rb +0 -252
- data/scripts/provision-org-sites.sh +0 -23
- data/scripts/sync-hub-metadata.rb +0 -184
- data/scripts/sync-hub-metadata.sh +0 -22
data/_data/hub.yml
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
# =============================================================================
|
|
2
|
-
# Content Hub registry — _data/hub.yml
|
|
3
|
-
# =============================================================================
|
|
4
|
-
#
|
|
5
|
-
# Source of truth for the org content hub. Content NEVER leaves the source
|
|
6
|
-
# repos: each org repo publishes its own GitHub Pages project site at
|
|
7
|
-
# https://<org>.github.io/<repo>/ using this theme via `remote_theme`, and
|
|
8
|
-
# this site is the dashboard that presents and monitors them.
|
|
9
|
-
#
|
|
10
|
-
# Consumers of this registry:
|
|
11
|
-
# scripts/provision-org-sites.sh rolls the Pages scaffold out to org repos
|
|
12
|
-
# (templates/org-site/*) and enables Pages
|
|
13
|
-
# scripts/sync-hub-metadata.sh refreshes the generated dashboard data:
|
|
14
|
-
# _data/hub_index.yml (repo stats)
|
|
15
|
-
# _data/navigation/hub.yml (sidebar tree)
|
|
16
|
-
#
|
|
17
|
-
# Validated by `./scripts/sync-hub-metadata.sh --check` (CI gate).
|
|
18
|
-
# =============================================================================
|
|
19
|
-
|
|
20
|
-
# GitHub organization (or user) whose repositories make up the hub.
|
|
21
|
-
org: year-of-ai
|
|
22
|
-
|
|
23
|
-
# When true, every non-archived repo in the org is included unless listed in
|
|
24
|
-
# `exclude_repos`. When false, only repos listed under `repos:` are included.
|
|
25
|
-
auto_discover: true
|
|
26
|
-
|
|
27
|
-
# Repos that are never treated as content sites.
|
|
28
|
-
exclude_repos:
|
|
29
|
-
- zer0-mistakes # this site/theme itself
|
|
30
|
-
- .github # org meta repo, if one appears
|
|
31
|
-
|
|
32
|
-
# Settings applied when provisioning org repos as Pages sites.
|
|
33
|
-
pages:
|
|
34
|
-
# Value for `remote_theme:` in the generated _config.yml of each org repo.
|
|
35
|
-
# The org root site (year-of-ai/year-of-ai.github.io) is a fork of the
|
|
36
|
-
# zer0-mistakes theme and doubles as the remote_theme source for the years.
|
|
37
|
-
theme_repo: year-of-ai/year-of-ai.github.io
|
|
38
|
-
# Git ref to scaffold against / publish from. Empty = repo default branch.
|
|
39
|
-
branch: ""
|
|
40
|
-
|
|
41
|
-
# Rules applied to every repo unless overridden per-repo below.
|
|
42
|
-
defaults:
|
|
43
|
-
# Paths that are repo/agent plumbing rather than content. Used both for the
|
|
44
|
-
# generated Pages `exclude:` list and for the dashboard page counts.
|
|
45
|
-
exclude:
|
|
46
|
-
- "README.md" # rendered as the site homepage, not counted as content
|
|
47
|
-
- "CLAUDE.md"
|
|
48
|
-
- "AGENTS.md"
|
|
49
|
-
- "LIFECYCLE.md"
|
|
50
|
-
- "ROADMAP.md"
|
|
51
|
-
- "lifecycle.yml"
|
|
52
|
-
- "seed.md"
|
|
53
|
-
- "seed-package/**"
|
|
54
|
-
- "telemetry/**"
|
|
55
|
-
- ".github/**"
|
|
56
|
-
- ".claude/**"
|
|
57
|
-
|
|
58
|
-
# Optional per-repo overrides, merged onto discovered repos by `name`.
|
|
59
|
-
# Supported keys: name (required), title, description, branch.
|
|
60
|
-
repos:
|
|
61
|
-
- name: "2005"
|
|
62
|
-
title: "2005 — Year Knowledge Base"
|
|
63
|
-
- name: "2006"
|
|
64
|
-
title: "2006 — Year Knowledge Base"
|
|
65
|
-
- name: "2007"
|
|
66
|
-
title: "2007 — Year Knowledge Base"
|
|
67
|
-
- name: "2008"
|
|
68
|
-
title: "2008 — Year Knowledge Base"
|
data/_data/hub_index.yml
DELETED
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
# =============================================================================
|
|
2
|
-
# GENERATED FILE — do not edit by hand.
|
|
3
|
-
# Regenerate with: ./scripts/sync-hub-metadata.sh
|
|
4
|
-
# Source registry: _data/hub.yml
|
|
5
|
-
# =============================================================================
|
|
6
|
-
org: year-of-ai
|
|
7
|
-
totals:
|
|
8
|
-
repos: 5
|
|
9
|
-
pages: 402
|
|
10
|
-
repos:
|
|
11
|
-
- name: '1776'
|
|
12
|
-
title: '1776'
|
|
13
|
-
description: A self-growing knowledge base about the year 1776. Next era of the
|
|
14
|
-
year-of-ai lineage, spawned from 2005-2011.
|
|
15
|
-
url: https://github.com/year-of-ai/1776
|
|
16
|
-
site_url: https://year-of-ai.github.io/1776/
|
|
17
|
-
pages_enabled: false
|
|
18
|
-
scaffolded: false
|
|
19
|
-
branch: main
|
|
20
|
-
pushed_at: '2026-06-15T12:43:06Z'
|
|
21
|
-
page_count: 17
|
|
22
|
-
sections:
|
|
23
|
-
- name: arts
|
|
24
|
-
title: Arts & Culture
|
|
25
|
-
url: https://year-of-ai.github.io/1776/arts/
|
|
26
|
-
count: 2
|
|
27
|
-
- name: economics
|
|
28
|
-
title: Economics & Trade
|
|
29
|
-
url: https://year-of-ai.github.io/1776/economics/
|
|
30
|
-
count: 1
|
|
31
|
-
- name: military
|
|
32
|
-
title: Military Events
|
|
33
|
-
url: https://year-of-ai.github.io/1776/military/
|
|
34
|
-
count: 2
|
|
35
|
-
- name: people
|
|
36
|
-
title: Key Figures
|
|
37
|
-
url: https://year-of-ai.github.io/1776/people/
|
|
38
|
-
count: 1
|
|
39
|
-
- name: politics
|
|
40
|
-
title: Political Events
|
|
41
|
-
url: https://year-of-ai.github.io/1776/politics/
|
|
42
|
-
count: 2
|
|
43
|
-
- name: science
|
|
44
|
-
title: Science & Discovery
|
|
45
|
-
url: https://year-of-ai.github.io/1776/science/
|
|
46
|
-
count: 1
|
|
47
|
-
root_pages:
|
|
48
|
-
- title: Timeline
|
|
49
|
-
url: https://year-of-ai.github.io/1776/TIMELINE/
|
|
50
|
-
- name: '1777'
|
|
51
|
-
title: '1777'
|
|
52
|
-
description: A self-growing encyclopedic knowledge base covering the events, people,
|
|
53
|
-
works, and discoveries of 1777.
|
|
54
|
-
url: https://github.com/year-of-ai/1777
|
|
55
|
-
site_url: https://year-of-ai.github.io/1777/
|
|
56
|
-
pages_enabled: false
|
|
57
|
-
scaffolded: false
|
|
58
|
-
branch: main
|
|
59
|
-
pushed_at: '2026-06-15T12:43:43Z'
|
|
60
|
-
page_count: 14
|
|
61
|
-
sections:
|
|
62
|
-
- name: arts
|
|
63
|
-
title: Arts & Culture — 1777
|
|
64
|
-
url: https://year-of-ai.github.io/1777/arts/
|
|
65
|
-
count: 0
|
|
66
|
-
- name: economics
|
|
67
|
-
title: Economics & Trade — 1777
|
|
68
|
-
url: https://year-of-ai.github.io/1777/economics/
|
|
69
|
-
count: 0
|
|
70
|
-
- name: military
|
|
71
|
-
title: Military Events — 1777
|
|
72
|
-
url: https://year-of-ai.github.io/1777/military/
|
|
73
|
-
count: 2
|
|
74
|
-
- name: people
|
|
75
|
-
title: Key Figures — 1777
|
|
76
|
-
url: https://year-of-ai.github.io/1777/people/
|
|
77
|
-
count: 1
|
|
78
|
-
- name: politics
|
|
79
|
-
title: Political Events — 1777
|
|
80
|
-
url: https://year-of-ai.github.io/1777/politics/
|
|
81
|
-
count: 3
|
|
82
|
-
- name: science
|
|
83
|
-
title: Science & Discovery — 1777
|
|
84
|
-
url: https://year-of-ai.github.io/1777/science/
|
|
85
|
-
count: 0
|
|
86
|
-
root_pages:
|
|
87
|
-
- title: Timeline
|
|
88
|
-
url: https://year-of-ai.github.io/1777/TIMELINE/
|
|
89
|
-
- name: '1778'
|
|
90
|
-
title: '1778'
|
|
91
|
-
description: 'Self-growing knowledge base: the year 1778'
|
|
92
|
-
url: https://github.com/year-of-ai/1778
|
|
93
|
-
site_url: https://year-of-ai.github.io/1778/
|
|
94
|
-
pages_enabled: false
|
|
95
|
-
scaffolded: false
|
|
96
|
-
branch: main
|
|
97
|
-
pushed_at: '2026-06-15T12:33:17Z'
|
|
98
|
-
page_count: 0
|
|
99
|
-
sections: []
|
|
100
|
-
root_pages: []
|
|
101
|
-
- name: 2005-2011
|
|
102
|
-
title: 2005-2011
|
|
103
|
-
description: A consolidated knowledge base spanning the years 2005–2011, merging
|
|
104
|
-
the year-of-ai lineage.
|
|
105
|
-
url: https://github.com/year-of-ai/2005-2011
|
|
106
|
-
site_url: https://year-of-ai.github.io/2005-2011/
|
|
107
|
-
pages_enabled: false
|
|
108
|
-
scaffolded: false
|
|
109
|
-
branch: main
|
|
110
|
-
pushed_at: '2026-06-14T01:18:32Z'
|
|
111
|
-
page_count: 105
|
|
112
|
-
sections:
|
|
113
|
-
- name: '2005'
|
|
114
|
-
title: '2005'
|
|
115
|
-
url: https://year-of-ai.github.io/2005-2011/2005/
|
|
116
|
-
count: 7
|
|
117
|
-
- name: '2006'
|
|
118
|
-
title: '2006'
|
|
119
|
-
url: https://year-of-ai.github.io/2005-2011/2006/
|
|
120
|
-
count: 10
|
|
121
|
-
- name: '2007'
|
|
122
|
-
title: '2007'
|
|
123
|
-
url: https://year-of-ai.github.io/2005-2011/2007/
|
|
124
|
-
count: 10
|
|
125
|
-
- name: '2008'
|
|
126
|
-
title: '2008'
|
|
127
|
-
url: https://year-of-ai.github.io/2005-2011/2008/
|
|
128
|
-
count: 9
|
|
129
|
-
- name: '2009'
|
|
130
|
-
title: '2009'
|
|
131
|
-
url: https://year-of-ai.github.io/2005-2011/2009/
|
|
132
|
-
count: 10
|
|
133
|
-
- name: '2010'
|
|
134
|
-
title: '2010'
|
|
135
|
-
url: https://year-of-ai.github.io/2005-2011/2010/
|
|
136
|
-
count: 9
|
|
137
|
-
- name: '2011'
|
|
138
|
-
title: '2011'
|
|
139
|
-
url: https://year-of-ai.github.io/2005-2011/2011/
|
|
140
|
-
count: 12
|
|
141
|
-
root_pages:
|
|
142
|
-
- title: Timeline
|
|
143
|
-
url: https://year-of-ai.github.io/2005-2011/TIMELINE/
|
|
144
|
-
- name: year-of-ai.github.io
|
|
145
|
-
title: year-of-ai.github.io
|
|
146
|
-
description: Github Pages compatible Jekyll theme using Bootstrap 5
|
|
147
|
-
url: https://github.com/year-of-ai/year-of-ai.github.io
|
|
148
|
-
site_url: https://year-of-ai.github.io/
|
|
149
|
-
pages_enabled: true
|
|
150
|
-
scaffolded: true
|
|
151
|
-
branch: main
|
|
152
|
-
pushed_at: '2026-06-16T03:00:24Z'
|
|
153
|
-
page_count: 266
|
|
154
|
-
sections:
|
|
155
|
-
- name: _data
|
|
156
|
-
title: Data
|
|
157
|
-
url: https://year-of-ai.github.io/_data/
|
|
158
|
-
count: 2
|
|
159
|
-
- name: _includes
|
|
160
|
-
title: Includes
|
|
161
|
-
url: https://year-of-ai.github.io/_includes/
|
|
162
|
-
count: 3
|
|
163
|
-
- name: _layouts
|
|
164
|
-
title: Layouts
|
|
165
|
-
url: https://year-of-ai.github.io/_layouts/
|
|
166
|
-
count: 1
|
|
167
|
-
- name: docker
|
|
168
|
-
title: Docker
|
|
169
|
-
url: https://year-of-ai.github.io/docker/
|
|
170
|
-
count: 1
|
|
171
|
-
- name: docs
|
|
172
|
-
title: Docs
|
|
173
|
-
url: https://year-of-ai.github.io/docs/
|
|
174
|
-
count: 66
|
|
175
|
-
- name: features
|
|
176
|
-
title: Features
|
|
177
|
-
url: https://year-of-ai.github.io/features/
|
|
178
|
-
count: 1
|
|
179
|
-
- name: pages
|
|
180
|
-
title: Pages
|
|
181
|
-
url: https://year-of-ai.github.io/pages/
|
|
182
|
-
count: 150
|
|
183
|
-
- name: scripts
|
|
184
|
-
title: Scripts
|
|
185
|
-
url: https://year-of-ai.github.io/scripts/
|
|
186
|
-
count: 8
|
|
187
|
-
- name: templates
|
|
188
|
-
title: Templates
|
|
189
|
-
url: https://year-of-ai.github.io/templates/
|
|
190
|
-
count: 10
|
|
191
|
-
- name: test
|
|
192
|
-
title: Test
|
|
193
|
-
url: https://year-of-ai.github.io/test/
|
|
194
|
-
count: 2
|
|
195
|
-
root_pages:
|
|
196
|
-
- title: Changelog
|
|
197
|
-
url: https://year-of-ai.github.io/CHANGELOG/
|
|
198
|
-
- title: Code Of Conduct
|
|
199
|
-
url: https://year-of-ai.github.io/CODE_OF_CONDUCT/
|
|
200
|
-
- title: Contributing
|
|
201
|
-
url: https://year-of-ai.github.io/CONTRIBUTING/
|
|
202
|
-
- title: Security
|
|
203
|
-
url: https://year-of-ai.github.io/SECURITY/
|
data/_data/navigation/hub.yml
DELETED
|
@@ -1,110 +0,0 @@
|
|
|
1
|
-
# =============================================================================
|
|
2
|
-
# GENERATED FILE — do not edit by hand.
|
|
3
|
-
# Regenerate with: ./scripts/sync-hub-metadata.sh
|
|
4
|
-
# Source registry: _data/hub.yml
|
|
5
|
-
# =============================================================================
|
|
6
|
-
- title: Hub Dashboard
|
|
7
|
-
icon: bi-grid-1x2
|
|
8
|
-
url: "/hub/"
|
|
9
|
-
- title: '1776'
|
|
10
|
-
icon: bi-journal-richtext
|
|
11
|
-
url: https://year-of-ai.github.io/1776/
|
|
12
|
-
children:
|
|
13
|
-
- title: Site Home
|
|
14
|
-
url: https://year-of-ai.github.io/1776/
|
|
15
|
-
- title: Timeline
|
|
16
|
-
url: https://year-of-ai.github.io/1776/TIMELINE/
|
|
17
|
-
- title: Arts & Culture
|
|
18
|
-
url: https://year-of-ai.github.io/1776/arts/
|
|
19
|
-
- title: Economics & Trade
|
|
20
|
-
url: https://year-of-ai.github.io/1776/economics/
|
|
21
|
-
- title: Military Events
|
|
22
|
-
url: https://year-of-ai.github.io/1776/military/
|
|
23
|
-
- title: Key Figures
|
|
24
|
-
url: https://year-of-ai.github.io/1776/people/
|
|
25
|
-
- title: Political Events
|
|
26
|
-
url: https://year-of-ai.github.io/1776/politics/
|
|
27
|
-
- title: Science & Discovery
|
|
28
|
-
url: https://year-of-ai.github.io/1776/science/
|
|
29
|
-
- title: '1777'
|
|
30
|
-
icon: bi-journal-richtext
|
|
31
|
-
url: https://year-of-ai.github.io/1777/
|
|
32
|
-
children:
|
|
33
|
-
- title: Site Home
|
|
34
|
-
url: https://year-of-ai.github.io/1777/
|
|
35
|
-
- title: Timeline
|
|
36
|
-
url: https://year-of-ai.github.io/1777/TIMELINE/
|
|
37
|
-
- title: Arts & Culture — 1777
|
|
38
|
-
url: https://year-of-ai.github.io/1777/arts/
|
|
39
|
-
- title: Economics & Trade — 1777
|
|
40
|
-
url: https://year-of-ai.github.io/1777/economics/
|
|
41
|
-
- title: Military Events — 1777
|
|
42
|
-
url: https://year-of-ai.github.io/1777/military/
|
|
43
|
-
- title: Key Figures — 1777
|
|
44
|
-
url: https://year-of-ai.github.io/1777/people/
|
|
45
|
-
- title: Political Events — 1777
|
|
46
|
-
url: https://year-of-ai.github.io/1777/politics/
|
|
47
|
-
- title: Science & Discovery — 1777
|
|
48
|
-
url: https://year-of-ai.github.io/1777/science/
|
|
49
|
-
- title: '1778'
|
|
50
|
-
icon: bi-journal-richtext
|
|
51
|
-
url: https://year-of-ai.github.io/1778/
|
|
52
|
-
children:
|
|
53
|
-
- title: Site Home
|
|
54
|
-
url: https://year-of-ai.github.io/1778/
|
|
55
|
-
- title: 2005-2011
|
|
56
|
-
icon: bi-journal-richtext
|
|
57
|
-
url: https://year-of-ai.github.io/2005-2011/
|
|
58
|
-
children:
|
|
59
|
-
- title: Site Home
|
|
60
|
-
url: https://year-of-ai.github.io/2005-2011/
|
|
61
|
-
- title: Timeline
|
|
62
|
-
url: https://year-of-ai.github.io/2005-2011/TIMELINE/
|
|
63
|
-
- title: '2005'
|
|
64
|
-
url: https://year-of-ai.github.io/2005-2011/2005/
|
|
65
|
-
- title: '2006'
|
|
66
|
-
url: https://year-of-ai.github.io/2005-2011/2006/
|
|
67
|
-
- title: '2007'
|
|
68
|
-
url: https://year-of-ai.github.io/2005-2011/2007/
|
|
69
|
-
- title: '2008'
|
|
70
|
-
url: https://year-of-ai.github.io/2005-2011/2008/
|
|
71
|
-
- title: '2009'
|
|
72
|
-
url: https://year-of-ai.github.io/2005-2011/2009/
|
|
73
|
-
- title: '2010'
|
|
74
|
-
url: https://year-of-ai.github.io/2005-2011/2010/
|
|
75
|
-
- title: '2011'
|
|
76
|
-
url: https://year-of-ai.github.io/2005-2011/2011/
|
|
77
|
-
- title: year-of-ai.github.io
|
|
78
|
-
icon: bi-journal-richtext
|
|
79
|
-
url: https://year-of-ai.github.io/
|
|
80
|
-
children:
|
|
81
|
-
- title: Site Home
|
|
82
|
-
url: https://year-of-ai.github.io/
|
|
83
|
-
- title: Changelog
|
|
84
|
-
url: https://year-of-ai.github.io/CHANGELOG/
|
|
85
|
-
- title: Code Of Conduct
|
|
86
|
-
url: https://year-of-ai.github.io/CODE_OF_CONDUCT/
|
|
87
|
-
- title: Contributing
|
|
88
|
-
url: https://year-of-ai.github.io/CONTRIBUTING/
|
|
89
|
-
- title: Security
|
|
90
|
-
url: https://year-of-ai.github.io/SECURITY/
|
|
91
|
-
- title: Data
|
|
92
|
-
url: https://year-of-ai.github.io/_data/
|
|
93
|
-
- title: Includes
|
|
94
|
-
url: https://year-of-ai.github.io/_includes/
|
|
95
|
-
- title: Layouts
|
|
96
|
-
url: https://year-of-ai.github.io/_layouts/
|
|
97
|
-
- title: Docker
|
|
98
|
-
url: https://year-of-ai.github.io/docker/
|
|
99
|
-
- title: Docs
|
|
100
|
-
url: https://year-of-ai.github.io/docs/
|
|
101
|
-
- title: Features
|
|
102
|
-
url: https://year-of-ai.github.io/features/
|
|
103
|
-
- title: Pages
|
|
104
|
-
url: https://year-of-ai.github.io/pages/
|
|
105
|
-
- title: Scripts
|
|
106
|
-
url: https://year-of-ai.github.io/scripts/
|
|
107
|
-
- title: Templates
|
|
108
|
-
url: https://year-of-ai.github.io/templates/
|
|
109
|
-
- title: Test
|
|
110
|
-
url: https://year-of-ai.github.io/test/
|