jekyll-theme-zer0 0.5.0 → 0.7.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 +186 -60
- data/README.md +225 -12
- data/_data/authors.yml +52 -0
- data/_data/navigation/posts.yml +13 -14
- data/_includes/analytics/posthog.html +281 -0
- data/_includes/components/author-card.html +177 -0
- data/_includes/components/cookie-consent.html +382 -0
- data/_includes/components/info-section.html +5 -0
- data/_includes/components/js-cdn.html +27 -22
- data/_includes/components/post-card.html +176 -0
- data/_includes/components/theme-info.html +312 -0
- data/_includes/core/branding.html +24 -12
- data/_includes/core/footer.html +16 -0
- data/_includes/core/head.html +8 -8
- data/_includes/navigation/sidebar-folders.html +63 -103
- data/_layouts/blog.html +424 -232
- data/_layouts/category.html +247 -0
- data/_layouts/journals.html +272 -23
- data/_layouts/root.html +6 -0
- data/_layouts/tag.html +111 -0
- data/assets/css/main.scss +5 -5
- metadata +15 -7
- /data/_sass/{it-journey → core}/_docs.scss +0 -0
- /data/_sass/{it-journey → core}/_syntax.scss +0 -0
- /data/_sass/{it-journey → core}/_theme.scss +0 -0
- /data/_sass/{it-journey → core}/_variables.scss +0 -0
- /data/_sass/{it-journey → core}/code-copy.scss +0 -0
data/assets/css/main.scss
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
@charset "utf-8";
|
|
7
7
|
|
|
8
8
|
// Styling Variables
|
|
9
|
-
@import "
|
|
10
|
-
@import "
|
|
11
|
-
@import "
|
|
9
|
+
@import "core/variables";
|
|
10
|
+
@import "core/docs";
|
|
11
|
+
@import "core/theme";
|
|
12
12
|
|
|
13
13
|
// Bootstrap Styles
|
|
14
14
|
// @import "bootstrap.scss";
|
|
@@ -17,6 +17,6 @@
|
|
|
17
17
|
@import "custom.scss";
|
|
18
18
|
|
|
19
19
|
// Custom Features
|
|
20
|
-
@import "
|
|
21
|
-
@import "
|
|
20
|
+
@import "core/code-copy";
|
|
21
|
+
@import "core/syntax";
|
|
22
22
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-zer0
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amr Abdel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-11-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -78,6 +78,7 @@ files:
|
|
|
78
78
|
- LICENSE
|
|
79
79
|
- README.md
|
|
80
80
|
- _data/README.md
|
|
81
|
+
- _data/authors.yml
|
|
81
82
|
- _data/content_statistics.yml
|
|
82
83
|
- _data/generate_statistics.rb
|
|
83
84
|
- _data/navigation/about.yml
|
|
@@ -90,15 +91,20 @@ files:
|
|
|
90
91
|
- _includes/analytics/google-analytics.html
|
|
91
92
|
- _includes/analytics/google-tag-manager-body.html
|
|
92
93
|
- _includes/analytics/google-tag-manager-head.html
|
|
94
|
+
- _includes/analytics/posthog.html
|
|
95
|
+
- _includes/components/author-card.html
|
|
96
|
+
- _includes/components/cookie-consent.html
|
|
93
97
|
- _includes/components/dev-shortcuts.html
|
|
94
98
|
- _includes/components/halfmoon.html
|
|
95
99
|
- _includes/components/info-section.html
|
|
96
100
|
- _includes/components/js-cdn.html
|
|
97
101
|
- _includes/components/mermaid.html
|
|
102
|
+
- _includes/components/post-card.html
|
|
98
103
|
- _includes/components/powered-by.html
|
|
99
104
|
- _includes/components/quick-index.html
|
|
100
105
|
- _includes/components/searchbar.html
|
|
101
106
|
- _includes/components/svg.html
|
|
107
|
+
- _includes/components/theme-info.html
|
|
102
108
|
- _includes/components/zer0-env-var.html
|
|
103
109
|
- _includes/content/giscus.html
|
|
104
110
|
- _includes/content/intro.html
|
|
@@ -128,6 +134,7 @@ files:
|
|
|
128
134
|
- _includes/stats/stats-tags.html
|
|
129
135
|
- _layouts/README.md
|
|
130
136
|
- _layouts/blog.html
|
|
137
|
+
- _layouts/category.html
|
|
131
138
|
- _layouts/collection.html
|
|
132
139
|
- _layouts/default.html
|
|
133
140
|
- _layouts/home.html
|
|
@@ -137,12 +144,13 @@ files:
|
|
|
137
144
|
- _layouts/root.html
|
|
138
145
|
- _layouts/sitemap-collection.html
|
|
139
146
|
- _layouts/stats.html
|
|
147
|
+
- _layouts/tag.html
|
|
148
|
+
- _sass/core/_docs.scss
|
|
149
|
+
- _sass/core/_syntax.scss
|
|
150
|
+
- _sass/core/_theme.scss
|
|
151
|
+
- _sass/core/_variables.scss
|
|
152
|
+
- _sass/core/code-copy.scss
|
|
140
153
|
- _sass/custom.scss
|
|
141
|
-
- _sass/it-journey/_docs.scss
|
|
142
|
-
- _sass/it-journey/_syntax.scss
|
|
143
|
-
- _sass/it-journey/_theme.scss
|
|
144
|
-
- _sass/it-journey/_variables.scss
|
|
145
|
-
- _sass/it-journey/code-copy.scss
|
|
146
154
|
- assets/.DS_Store
|
|
147
155
|
- assets/css/custom.css
|
|
148
156
|
- assets/css/main.scss
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|