jekyll-theme-zer0 0.1.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 +7 -0
- data/LICENSE +21 -0
- data/README.md +499 -0
- data/_includes/branding.html +43 -0
- data/_includes/breadcrumbs.html +31 -0
- data/_includes/dev-shortcuts.html +57 -0
- data/_includes/footer.html +57 -0
- data/_includes/giscus.html +16 -0
- data/_includes/google-analytics.html +9 -0
- data/_includes/google-tag-manager-body.html +8 -0
- data/_includes/google-tag-manager-head.html +10 -0
- data/_includes/halfmoon.html +35 -0
- data/_includes/head.html +95 -0
- data/_includes/header.html +79 -0
- data/_includes/info-section.html +33 -0
- data/_includes/intro.html +27 -0
- data/_includes/js-cdn.html +24 -0
- data/_includes/nav_list.html +63 -0
- data/_includes/navbar.html +34 -0
- data/_includes/powered-by.html +22 -0
- data/_includes/quick-index.html +17 -0
- data/_includes/searchbar.html +10 -0
- data/_includes/seo.html +131 -0
- data/_includes/sidebar-categories.html +21 -0
- data/_includes/sidebar-folders.html +107 -0
- data/_includes/sidebar-left.html +41 -0
- data/_includes/sidebar-right.html +47 -0
- data/_includes/sitemap.html +123 -0
- data/_includes/style.html +1574 -0
- data/_includes/svg.html +81 -0
- data/_includes/toc +7 -0
- data/_includes/toc.html +182 -0
- data/_includes/zer0-env-var.html +88 -0
- data/_layouts/collection.html +42 -0
- data/_layouts/default.html +37 -0
- data/_layouts/home.html +16 -0
- data/_layouts/index.html +8 -0
- data/_layouts/javascript.html +8 -0
- data/_layouts/journals.html +41 -0
- data/_layouts/root.html +54 -0
- data/_sass/custom.scss +331 -0
- data/_sass/it-journey/_docs.scss +3219 -0
- data/_sass/it-journey/_syntax.scss +342 -0
- data/_sass/it-journey/_theme.scss +247 -0
- data/_sass/it-journey/_variables.scss +521 -0
- data/_sass/it-journey/code-copy.scss +105 -0
- data/assets/.DS_Store +0 -0
- data/assets/css/custom.css +120 -0
- data/assets/css/main.scss +22 -0
- data/assets/images/favicon_gpt_computer_retro.png +0 -0
- data/assets/images/gravatar-small.png +0 -0
- data/assets/images/gravatar.png +0 -0
- data/assets/images/info-banner-mountain-wizard.png +0 -0
- data/assets/images/wizard-on-journey.png +0 -0
- data/assets/images/zer0-checkpoint-1.png +0 -0
- data/assets/images/zer0-checkpoint-2.png +0 -0
- data/assets/js/auto-hide-nav.js +18 -0
- data/assets/js/back-to-top.js +24 -0
- data/assets/js/cheetsheet.js +73 -0
- data/assets/js/code-copy.js +27 -0
- data/assets/js/color-modes.js +80 -0
- data/assets/js/docs.min.js +1 -0
- data/assets/js/halfmoon.js +80 -0
- data/assets/js/myScript.js +12 -0
- data/assets/js/nanobar.min.js +1 -0
- data/assets/js/particles-source.js +888 -0
- data/assets/js/particles.js +133 -0
- data/assets/js/side-bar-folders.js +12 -0
- data/assets/particles.json +110 -0
- metadata +153 -0
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
/* -----------------------------------------------
|
|
2
|
+
/*
|
|
3
|
+
/* ----------------------------------------------- */
|
|
4
|
+
|
|
5
|
+
/* particlesJS.load(@dom-id, @path-json, @callback (optional)); */
|
|
6
|
+
|
|
7
|
+
particlesJS.load('particles-js', '/assets/particles.json', function() {
|
|
8
|
+
console.log('callback - particles.js config loaded');
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
/* Otherwise just put the config content (json): */
|
|
12
|
+
/*
|
|
13
|
+
particlesJS('particles-js',
|
|
14
|
+
|
|
15
|
+
{
|
|
16
|
+
"particles": {
|
|
17
|
+
"number": {
|
|
18
|
+
"value": 80,
|
|
19
|
+
"density": {
|
|
20
|
+
"enable": true,
|
|
21
|
+
"value_area": 800
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"color": {
|
|
25
|
+
"value": "#ffffff"
|
|
26
|
+
},
|
|
27
|
+
"shape": {
|
|
28
|
+
"type": "circle",
|
|
29
|
+
"stroke": {
|
|
30
|
+
"width": 0,
|
|
31
|
+
"color": "#000000"
|
|
32
|
+
},
|
|
33
|
+
"polygon": {
|
|
34
|
+
"nb_sides": 5
|
|
35
|
+
},
|
|
36
|
+
"image": {
|
|
37
|
+
"src": "img/github.svg",
|
|
38
|
+
"width": 100,
|
|
39
|
+
"height": 100
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"opacity": {
|
|
43
|
+
"value": 0.5,
|
|
44
|
+
"random": false,
|
|
45
|
+
"anim": {
|
|
46
|
+
"enable": false,
|
|
47
|
+
"speed": 1,
|
|
48
|
+
"opacity_min": 0.1,
|
|
49
|
+
"sync": false
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"size": {
|
|
53
|
+
"value": 5,
|
|
54
|
+
"random": true,
|
|
55
|
+
"anim": {
|
|
56
|
+
"enable": false,
|
|
57
|
+
"speed": 40,
|
|
58
|
+
"size_min": 0.1,
|
|
59
|
+
"sync": false
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"line_linked": {
|
|
63
|
+
"enable": true,
|
|
64
|
+
"distance": 150,
|
|
65
|
+
"color": "#ffffff",
|
|
66
|
+
"opacity": 0.4,
|
|
67
|
+
"width": 1
|
|
68
|
+
},
|
|
69
|
+
"move": {
|
|
70
|
+
"enable": true,
|
|
71
|
+
"speed": 6,
|
|
72
|
+
"direction": "none",
|
|
73
|
+
"random": false,
|
|
74
|
+
"straight": false,
|
|
75
|
+
"out_mode": "out",
|
|
76
|
+
"attract": {
|
|
77
|
+
"enable": false,
|
|
78
|
+
"rotateX": 600,
|
|
79
|
+
"rotateY": 1200
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"interactivity": {
|
|
84
|
+
"detect_on": "canvas",
|
|
85
|
+
"events": {
|
|
86
|
+
"onhover": {
|
|
87
|
+
"enable": true,
|
|
88
|
+
"mode": "repulse"
|
|
89
|
+
},
|
|
90
|
+
"onclick": {
|
|
91
|
+
"enable": true,
|
|
92
|
+
"mode": "push"
|
|
93
|
+
},
|
|
94
|
+
"resize": true
|
|
95
|
+
},
|
|
96
|
+
"modes": {
|
|
97
|
+
"grab": {
|
|
98
|
+
"distance": 400,
|
|
99
|
+
"line_linked": {
|
|
100
|
+
"opacity": 1
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"bubble": {
|
|
104
|
+
"distance": 400,
|
|
105
|
+
"size": 40,
|
|
106
|
+
"duration": 2,
|
|
107
|
+
"opacity": 8,
|
|
108
|
+
"speed": 3
|
|
109
|
+
},
|
|
110
|
+
"repulse": {
|
|
111
|
+
"distance": 200
|
|
112
|
+
},
|
|
113
|
+
"push": {
|
|
114
|
+
"particles_nb": 4
|
|
115
|
+
},
|
|
116
|
+
"remove": {
|
|
117
|
+
"particles_nb": 2
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
},
|
|
121
|
+
"retina_detect": true,
|
|
122
|
+
"config_demo": {
|
|
123
|
+
"hide_card": false,
|
|
124
|
+
"background_color": "#b61924",
|
|
125
|
+
"background_image": null,
|
|
126
|
+
"background_position": "50% 50%",
|
|
127
|
+
"background_repeat": "no-repeat",
|
|
128
|
+
"background_size": "cover"
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
);
|
|
133
|
+
*/
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
document.addEventListener('DOMContentLoaded', function () {
|
|
2
|
+
const folders = document.querySelectorAll('.folder');
|
|
3
|
+
|
|
4
|
+
folders.forEach(folder => {
|
|
5
|
+
folder.addEventListener('click', function () {
|
|
6
|
+
const nextElement = this.nextElementSibling;
|
|
7
|
+
if (nextElement.classList.contains('nested-list-group')) {
|
|
8
|
+
nextElement.classList.toggle('show');
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
});
|
|
12
|
+
});
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"particles": {
|
|
3
|
+
"number": {
|
|
4
|
+
"value": 80,
|
|
5
|
+
"density": {
|
|
6
|
+
"enable": true,
|
|
7
|
+
"value_area": 800
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"color": {
|
|
11
|
+
"value": "#1abc9c"
|
|
12
|
+
},
|
|
13
|
+
"shape": {
|
|
14
|
+
"type": "circle",
|
|
15
|
+
"stroke": {
|
|
16
|
+
"width": 1,
|
|
17
|
+
"color": "#2c3e50"
|
|
18
|
+
},
|
|
19
|
+
"polygon": {
|
|
20
|
+
"nb_sides": 5
|
|
21
|
+
},
|
|
22
|
+
"image": {
|
|
23
|
+
"src": "img/github.svg",
|
|
24
|
+
"width": 100,
|
|
25
|
+
"height": 100
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"opacity": {
|
|
29
|
+
"value": 0.5,
|
|
30
|
+
"random": false,
|
|
31
|
+
"anim": {
|
|
32
|
+
"enable": false,
|
|
33
|
+
"speed": 1,
|
|
34
|
+
"opacity_min": 0.1,
|
|
35
|
+
"sync": false
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"size": {
|
|
39
|
+
"value": 5,
|
|
40
|
+
"random": true,
|
|
41
|
+
"anim": {
|
|
42
|
+
"enable": false,
|
|
43
|
+
"speed": 80,
|
|
44
|
+
"size_min": 0.1,
|
|
45
|
+
"sync": false
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"line_linked": {
|
|
49
|
+
"enable": true,
|
|
50
|
+
"distance": 200,
|
|
51
|
+
"color": "#2c3e50",
|
|
52
|
+
"opacity": 0.25,
|
|
53
|
+
"width": 2
|
|
54
|
+
},
|
|
55
|
+
"move": {
|
|
56
|
+
"enable": true,
|
|
57
|
+
"speed": 3,
|
|
58
|
+
"direction": "none",
|
|
59
|
+
"random": false,
|
|
60
|
+
"straight": false,
|
|
61
|
+
"out_mode": "out",
|
|
62
|
+
"bounce": false,
|
|
63
|
+
"attract": {
|
|
64
|
+
"enable": false,
|
|
65
|
+
"rotateX": 600,
|
|
66
|
+
"rotateY": 1200
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"interactivity": {
|
|
71
|
+
"detect_on": "canvas",
|
|
72
|
+
"events": {
|
|
73
|
+
"onhover": {
|
|
74
|
+
"enable": true,
|
|
75
|
+
"mode": ["grab", "bubble"]
|
|
76
|
+
},
|
|
77
|
+
"onclick": {
|
|
78
|
+
"enable": true,
|
|
79
|
+
"mode": "push"
|
|
80
|
+
},
|
|
81
|
+
"resize": true
|
|
82
|
+
},
|
|
83
|
+
"modes": {
|
|
84
|
+
"grab": {
|
|
85
|
+
"distance": 200,
|
|
86
|
+
"line_linked": {
|
|
87
|
+
"opacity": 1
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"bubble": {
|
|
91
|
+
"distance": 200,
|
|
92
|
+
"size": 6,
|
|
93
|
+
"duration": 2,
|
|
94
|
+
"opacity": 1,
|
|
95
|
+
"speed": 3
|
|
96
|
+
},
|
|
97
|
+
"repulse": {
|
|
98
|
+
"distance": 200,
|
|
99
|
+
"duration": 0.4
|
|
100
|
+
},
|
|
101
|
+
"push": {
|
|
102
|
+
"particles_nb": 4
|
|
103
|
+
},
|
|
104
|
+
"remove": {
|
|
105
|
+
"particles_nb": 2
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"retina_detect": true
|
|
110
|
+
}
|
metadata
ADDED
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: jekyll-theme-zer0
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Amr Abdel
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2024-06-09 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: jekyll
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 3.9.5
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 3.9.5
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: bundler
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 2.3.22
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 2.3.22
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rake
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '13.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '13.0'
|
|
55
|
+
description:
|
|
56
|
+
email:
|
|
57
|
+
- amr@it-journey.dev
|
|
58
|
+
executables: []
|
|
59
|
+
extensions: []
|
|
60
|
+
extra_rdoc_files: []
|
|
61
|
+
files:
|
|
62
|
+
- LICENSE
|
|
63
|
+
- README.md
|
|
64
|
+
- _includes/branding.html
|
|
65
|
+
- _includes/breadcrumbs.html
|
|
66
|
+
- _includes/dev-shortcuts.html
|
|
67
|
+
- _includes/footer.html
|
|
68
|
+
- _includes/giscus.html
|
|
69
|
+
- _includes/google-analytics.html
|
|
70
|
+
- _includes/google-tag-manager-body.html
|
|
71
|
+
- _includes/google-tag-manager-head.html
|
|
72
|
+
- _includes/halfmoon.html
|
|
73
|
+
- _includes/head.html
|
|
74
|
+
- _includes/header.html
|
|
75
|
+
- _includes/info-section.html
|
|
76
|
+
- _includes/intro.html
|
|
77
|
+
- _includes/js-cdn.html
|
|
78
|
+
- _includes/nav_list.html
|
|
79
|
+
- _includes/navbar.html
|
|
80
|
+
- _includes/powered-by.html
|
|
81
|
+
- _includes/quick-index.html
|
|
82
|
+
- _includes/searchbar.html
|
|
83
|
+
- _includes/seo.html
|
|
84
|
+
- _includes/sidebar-categories.html
|
|
85
|
+
- _includes/sidebar-folders.html
|
|
86
|
+
- _includes/sidebar-left.html
|
|
87
|
+
- _includes/sidebar-right.html
|
|
88
|
+
- _includes/sitemap.html
|
|
89
|
+
- _includes/style.html
|
|
90
|
+
- _includes/svg.html
|
|
91
|
+
- _includes/toc
|
|
92
|
+
- _includes/toc.html
|
|
93
|
+
- _includes/zer0-env-var.html
|
|
94
|
+
- _layouts/collection.html
|
|
95
|
+
- _layouts/default.html
|
|
96
|
+
- _layouts/home.html
|
|
97
|
+
- _layouts/index.html
|
|
98
|
+
- _layouts/javascript.html
|
|
99
|
+
- _layouts/journals.html
|
|
100
|
+
- _layouts/root.html
|
|
101
|
+
- _sass/custom.scss
|
|
102
|
+
- _sass/it-journey/_docs.scss
|
|
103
|
+
- _sass/it-journey/_syntax.scss
|
|
104
|
+
- _sass/it-journey/_theme.scss
|
|
105
|
+
- _sass/it-journey/_variables.scss
|
|
106
|
+
- _sass/it-journey/code-copy.scss
|
|
107
|
+
- assets/.DS_Store
|
|
108
|
+
- assets/css/custom.css
|
|
109
|
+
- assets/css/main.scss
|
|
110
|
+
- assets/images/favicon_gpt_computer_retro.png
|
|
111
|
+
- assets/images/gravatar-small.png
|
|
112
|
+
- assets/images/gravatar.png
|
|
113
|
+
- assets/images/info-banner-mountain-wizard.png
|
|
114
|
+
- assets/images/wizard-on-journey.png
|
|
115
|
+
- assets/images/zer0-checkpoint-1.png
|
|
116
|
+
- assets/images/zer0-checkpoint-2.png
|
|
117
|
+
- assets/js/auto-hide-nav.js
|
|
118
|
+
- assets/js/back-to-top.js
|
|
119
|
+
- assets/js/cheetsheet.js
|
|
120
|
+
- assets/js/code-copy.js
|
|
121
|
+
- assets/js/color-modes.js
|
|
122
|
+
- assets/js/docs.min.js
|
|
123
|
+
- assets/js/halfmoon.js
|
|
124
|
+
- assets/js/myScript.js
|
|
125
|
+
- assets/js/nanobar.min.js
|
|
126
|
+
- assets/js/particles-source.js
|
|
127
|
+
- assets/js/particles.js
|
|
128
|
+
- assets/js/side-bar-folders.js
|
|
129
|
+
- assets/particles.json
|
|
130
|
+
homepage: https://github.com/bamr87/zer0-mistakes
|
|
131
|
+
licenses:
|
|
132
|
+
- MIT
|
|
133
|
+
metadata: {}
|
|
134
|
+
post_install_message:
|
|
135
|
+
rdoc_options: []
|
|
136
|
+
require_paths:
|
|
137
|
+
- lib
|
|
138
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
139
|
+
requirements:
|
|
140
|
+
- - ">="
|
|
141
|
+
- !ruby/object:Gem::Version
|
|
142
|
+
version: '0'
|
|
143
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
144
|
+
requirements:
|
|
145
|
+
- - ">="
|
|
146
|
+
- !ruby/object:Gem::Version
|
|
147
|
+
version: '0'
|
|
148
|
+
requirements: []
|
|
149
|
+
rubygems_version: 3.3.22
|
|
150
|
+
signing_key:
|
|
151
|
+
specification_version: 4
|
|
152
|
+
summary: Jekyll theme based on bootstrap and compatible with github pages
|
|
153
|
+
test_files: []
|