jekyll-theme-zer0 0.2.0 → 0.4.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.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +56 -0
  3. data/README.md +455 -417
  4. data/_data/navigation/about.yml +2 -0
  5. data/_data/navigation/main.yml +17 -11
  6. data/_data/navigation/quickstart.yml +12 -0
  7. data/_includes/README.md +97 -0
  8. data/_includes/{info-section.html → components/info-section.html} +4 -4
  9. data/_includes/components/mermaid.html +101 -0
  10. data/_includes/content/giscus.html +60 -0
  11. data/_includes/content/intro.html +66 -0
  12. data/_includes/{sitemap.html → content/sitemap.html} +1 -1
  13. data/_includes/{toc.html → content/toc.html} +1 -1
  14. data/_includes/{branding.html → core/branding.html} +2 -2
  15. data/_includes/core/footer.html +167 -0
  16. data/_includes/core/head.html +163 -0
  17. data/_includes/core/header.html +125 -0
  18. data/_includes/landing/landing-install-cards.html +52 -0
  19. data/_includes/landing/landing-quick-links.html +28 -0
  20. data/_includes/navigation/navbar.html +96 -0
  21. data/_includes/navigation/sidebar-left.html +83 -0
  22. data/_includes/{sidebar-right.html → navigation/sidebar-right.html} +3 -10
  23. data/_layouts/README.md +8 -0
  24. data/_layouts/blog.html +2 -2
  25. data/_layouts/default.html +3 -3
  26. data/_layouts/journals.html +9 -80
  27. data/_layouts/landing.html +122 -45
  28. data/_layouts/root.html +6 -8
  29. data/assets/js/back-to-top.js +16 -19
  30. metadata +44 -69
  31. data/_includes/footer.html +0 -57
  32. data/_includes/giscus.html +0 -16
  33. data/_includes/head.html +0 -95
  34. data/_includes/header.html +0 -79
  35. data/_includes/intro.html +0 -68
  36. data/_includes/navbar.html +0 -34
  37. data/_includes/sidebar-left.html +0 -41
  38. data/_includes/toc +0 -7
  39. data/_layouts/javascript.html +0 -63
  40. /data/_includes/{google-analytics.html → analytics/google-analytics.html} +0 -0
  41. /data/_includes/{google-tag-manager-body.html → analytics/google-tag-manager-body.html} +0 -0
  42. /data/_includes/{google-tag-manager-head.html → analytics/google-tag-manager-head.html} +0 -0
  43. /data/_includes/{dev-shortcuts.html → components/dev-shortcuts.html} +0 -0
  44. /data/_includes/{halfmoon.html → components/halfmoon.html} +0 -0
  45. /data/_includes/{js-cdn.html → components/js-cdn.html} +0 -0
  46. /data/_includes/{powered-by.html → components/powered-by.html} +0 -0
  47. /data/_includes/{quick-index.html → components/quick-index.html} +0 -0
  48. /data/_includes/{searchbar.html → components/searchbar.html} +0 -0
  49. /data/_includes/{svg.html → components/svg.html} +0 -0
  50. /data/_includes/{zer0-env-var.html → components/zer0-env-var.html} +0 -0
  51. /data/_includes/{seo.html → content/seo.html} +0 -0
  52. /data/_includes/{style.html → docs/bootstrap-docs.html} +0 -0
  53. /data/_includes/{breadcrumbs.html → navigation/breadcrumbs.html} +0 -0
  54. /data/_includes/{nav_list.html → navigation/nav_list.html} +0 -0
  55. /data/_includes/{sidebar-categories.html → navigation/sidebar-categories.html} +0 -0
  56. /data/_includes/{sidebar-folders.html → navigation/sidebar-folders.html} +0 -0
@@ -2,103 +2,32 @@
2
2
  layout: default
3
3
  ---
4
4
  <!--
5
- ===================================================================
6
- JOURNALS LAYOUT - Blog post and article display template
7
- ===================================================================
8
-
9
- File: journals.html
10
- Path: _layouts/journals.html
11
- Inherits: default.html (which inherits root.html)
12
- Purpose: Specialized layout for blog posts, articles, and journal entries
13
-
14
- Template Logic:
15
- - Displays individual blog posts with proper article structure
16
- - Conditionally shows page title only if no header overlay is set
17
- - Implements pagination navigation between posts
18
- - Includes comment system integration (Giscus)
19
- - Provides proper semantic HTML5 structure for articles
20
-
21
- Layout Structure:
22
- 1. Main article container with archive styling
23
- 2. Conditional page title display
24
- 3. Article content area
25
- 4. Previous/Next post navigation with Bootstrap pagination
26
- 5. Optional comment section
27
-
28
- Navigation Logic:
29
- - Previous/Next links automatically generated from Jekyll post order
30
- - Disabled state for first/last posts in the sequence
31
- - Bootstrap pagination styling for consistent appearance
32
-
33
- Comment System:
34
- - Conditionally loads Giscus comments if page.comments is true
35
- - Allows for per-post comment control via frontmatter
36
-
37
- Dependencies:
38
- - giscus.html: Comment system integration
39
- - Jekyll post collection for navigation
40
- ===================================================================
5
+ Simple journals layout for debugging stack overflow issue
41
6
  -->
42
7
 
43
- <!-- ================================ -->
44
- <!-- MAIN ARTICLE CONTAINER -->
45
- <!-- ================================ -->
46
8
  <div id="main" role="main">
47
9
  <div class="archive">
48
- <!-- ========================== -->
49
- <!-- CONDITIONAL PAGE TITLE -->
50
- <!-- ========================== -->
51
- <!-- Only display title if no header overlay image/color is set -->
52
- <!-- This prevents title duplication when using hero images -->
53
- {% unless page.header.overlay_color or page.header.overlay_image %}
54
- <h1 id="page-title" class="">{{ page.title }}</h1>
55
- {% endunless %}
56
-
57
- <!-- ========================== -->
58
- <!-- ARTICLE CONTENT -->
59
- <!-- ========================== -->
60
- <!-- Main post content rendered from Markdown -->
10
+ <h1 id="page-title">{{ page.title }}</h1>
61
11
  {{ content }}
62
12
  </div>
63
-
64
- <!-- ================================ -->
65
- <!-- POST NAVIGATION -->
66
- <!-- ================================ -->
67
- <!-- Previous and Next post navigation with Bootstrap pagination styling -->
13
+
14
+ <!-- Simple navigation without complex logic -->
68
15
  <nav aria-label="Page navigation">
69
16
  <ul class="pagination pagination-lg justify-content-center">
70
- <!-- Previous Post Link -->
71
17
  <li class="page-item">
72
18
  {% if page.previous %}
73
- <a class="page-link" href="{{ page.previous.url | prepend: site.baseurl }}">
74
- Previous: {{ page.previous.title }}
75
- </a>
19
+ <a class="page-link" href="{{ page.previous.url }}">Previous</a>
76
20
  {% else %}
77
- <!-- Disabled state when no previous post exists -->
78
- <a class="page-link" href="#" aria-disabled="true">Previous</a>
21
+ <span class="page-link disabled">Previous</span>
79
22
  {% endif %}
80
23
  </li>
81
-
82
- <!-- Next Post Link -->
83
24
  <li class="page-item">
84
25
  {% if page.next %}
85
- <a class="page-link" href="{{ page.next.url | prepend: site.baseurl }}">
86
- Next: {{ page.next.title }}
87
- </a>
26
+ <a class="page-link" href="{{ page.next.url }}">Next</a>
88
27
  {% else %}
89
- <!-- Disabled state when no next post exists -->
90
- <a class="page-link" href="#" aria-disabled="true">Next</a>
28
+ <span class="page-link disabled">Next</span>
91
29
  {% endif %}
92
30
  </li>
93
31
  </ul>
94
32
  </nav>
95
- </div>
96
-
97
- <!-- ================================ -->
98
- <!-- COMMENT SYSTEM -->
99
- <!-- ================================ -->
100
- <!-- Conditionally load Giscus comments if enabled in page frontmatter -->
101
- <!-- Usage: Set 'comments: true' in post frontmatter to enable -->
102
- {% if page.comments %}
103
- {% include giscus.html %}
104
- {% endif %}
33
+ </div>
@@ -3,75 +3,152 @@ layout: root
3
3
  ---
4
4
  <!--
5
5
  ===================================================================
6
- LANDING LAYOUT - Template for landing pages with visual effects
6
+ LANDING LAYOUT - Welcome page for first-time visitors
7
7
  ===================================================================
8
8
 
9
9
  File: landing.html
10
10
  Path: _layouts/landing.html
11
11
  Inherits: root.html
12
- Purpose: Specialized layout for landing pages with interactive backgrounds
12
+ Purpose: Create an engaging first impression for visitors discovering the site
13
13
 
14
14
  Template Logic:
15
- - Creates a full-width landing page experience
16
- - Includes sidebar navigation in offcanvas (mobile-friendly)
17
- - Implements particles.js for animated background effects
18
- - Uses responsive container for content presentation
19
- - Bypasses default sidebar layout for cleaner presentation
15
+ - Hero section with clear value proposition
16
+ - Feature highlights with visual appeal
17
+ - Quick navigation to key areas
18
+ - Professional presentation with Bootstrap components
19
+ - Mobile-responsive design for all devices
20
20
 
21
21
  Layout Features:
22
- - Offcanvas sidebar for navigation (hidden by default)
23
- - Full-width responsive container with proper spacing
24
- - Particles.js integration for visual appeal
25
- - Clean, minimal structure for marketing content
22
+ - Hero banner with call-to-action
23
+ - Feature cards with icons and descriptions
24
+ - Quick start guide and navigation
25
+ - Social proof and credibility indicators
26
+ - Clean, professional aesthetic
26
27
 
27
- Visual Effects:
28
- - Particles.js animated background
29
- - Interactive particle system
30
- - Customizable through particles configuration
31
- - Performance-optimized for modern browsers
28
+ Target Audience:
29
+ - First-time visitors exploring the repository
30
+ - Developers looking for Jekyll themes
31
+ - Users seeking Docker-optimized solutions
32
+ - People interested in error-free development
32
33
 
33
- Usage:
34
- - Product landing pages
35
- - Marketing campaign pages
36
- - Portfolio showcases
37
- - Event announcement pages
38
- - Any page requiring visual impact
34
+ Conversion Goals:
35
+ - Encourage exploration of documentation
36
+ - Drive adoption of the theme
37
+ - Build trust through professional presentation
38
+ - Guide users to relevant resources
39
39
 
40
40
  Dependencies:
41
- - particles-source.js: Core particles.js library
42
- - particles.js: Custom particle configuration
43
- - sidebar-left.html: Navigation include for offcanvas
44
-
45
- Performance Notes:
46
- - Particles.js loads at page end for better performance
47
- - Consider lazy loading for mobile devices
48
- - Monitor performance impact on older devices
41
+ - Bootstrap 5 components and utilities
42
+ - Custom CSS for enhanced styling
43
+ - Responsive images and icons
49
44
  ===================================================================
50
45
  -->
51
46
 
52
47
  <!-- ================================ -->
53
- <!-- NAVIGATION SIDEBAR (OFFCANVAS) -->
48
+ <!-- HERO SECTION -->
54
49
  <!-- ================================ -->
55
- <!-- Hidden sidebar navigation that can be toggled -->
56
- <div class="offcanvas">
57
- {% include sidebar-left.html %}
50
+ <div class="bg-primary text-white">
51
+ <div class="container-xl py-5 px-4 px-md-5">
52
+ <div class="row align-items-center min-vh-50 g-4 g-lg-5">
53
+ <div class="col-lg-6">
54
+ <h1 class="display-4 fw-bold mb-3">{{ page.title }}</h1>
55
+ <p class="lead mb-4">{{ page.description }}</p>
56
+ <div class="d-flex flex-column flex-md-row gap-3">
57
+ <a href="#get-started" class="btn btn-light btn-lg">
58
+ <i class="bi bi-rocket-takeoff me-2"></i>Get Started
59
+ </a>
60
+ <a href="#features" class="btn btn-outline-light btn-lg">
61
+ <i class="bi bi-list-check me-2"></i>Features
62
+ </a>
63
+ <a href="{{ site.resources.github_repo }}" class="btn btn-outline-light btn-lg">
64
+ <i class="bi bi-github me-2"></i>GitHub
65
+ </a>
66
+ </div>
67
+ </div>
68
+ <div class="col-lg-6 text-center">
69
+ {% if page.hero_image %}
70
+ <img src="{{ page.hero_image }}" alt="{{ page.title }}" class="img-fluid rounded shadow-lg">
71
+ {% else %}
72
+ <div class="bg-light rounded p-5 text-dark">
73
+ <i class="bi bi-code-square display-1"></i>
74
+ <p class="mt-3 mb-0">Jekyll Theme</p>
75
+ </div>
76
+ {% endif %}
77
+ </div>
78
+ </div>
79
+ </div>
58
80
  </div>
59
81
 
60
82
  <!-- ================================ -->
61
- <!-- MAIN LANDING CONTENT -->
83
+ <!-- MAIN CONTENT AREA -->
62
84
  <!-- ================================ -->
63
- <!-- Responsive container for landing page content -->
64
- <div class="container-xl pt-5">
65
- <!-- ========================== -->
66
- <!-- LANDING PAGE CONTENT -->
67
- <!-- ========================== -->
68
- <!-- Main content area for hero sections, features, calls-to-action -->
85
+ {% include landing/landing-quick-links.html %}
86
+
87
+ <div class="container-xl py-5 px-4 px-md-5">
69
88
  {{ content }}
70
89
  </div>
71
90
 
72
91
  <!-- ================================ -->
73
- <!-- VISUAL EFFECTS AND SCRIPTS -->
92
+ <!-- FEATURES SECTION -->
93
+ <!-- ================================ -->
94
+ <div class="py-5 bg-body-tertiary" id="features">
95
+ <div class="container-xl px-4 px-md-5">
96
+ <div class="row text-center mb-5">
97
+ <div class="col-lg-8 mx-auto">
98
+ <h2 class="display-5 fw-bold text-body-emphasis">Why Choose zer0-mistakes?</h2>
99
+ <p class="lead text-body-secondary">Built for developers who value reliability, simplicity, and modern workflows</p>
100
+ </div>
101
+ </div>
102
+
103
+ <div class="row g-4">
104
+ <div class="col-md-4">
105
+ <div class="card h-100 border-0 shadow-sm">
106
+ <div class="card-body text-center p-4">
107
+ <div class="bg-primary text-white rounded-circle d-inline-flex align-items-center justify-content-center mb-3" style="width: 60px; height: 60px;">
108
+ <i class="bi bi-shield-check fs-4"></i>
109
+ </div>
110
+ <h5 class="card-title text-body-emphasis">Error-Free Development</h5>
111
+ <p class="card-text text-body-secondary">Built-in error handling and self-healing installation process ensures a smooth development experience.</p>
112
+ </div>
113
+ </div>
114
+ </div>
115
+
116
+ <div class="col-md-4">
117
+ <div class="card h-100 border-0 shadow-sm">
118
+ <div class="card-body text-center p-4">
119
+ <div class="bg-success text-white rounded-circle d-inline-flex align-items-center justify-content-center mb-3" style="width: 60px; height: 60px;">
120
+ <i class="bi bi-boxes fs-4"></i>
121
+ </div>
122
+ <h5 class="card-title text-body-emphasis">Docker-First Approach</h5>
123
+ <p class="card-text text-body-secondary">Cross-platform compatibility with zero local configuration. Works on Apple Silicon, Intel, and Linux.</p>
124
+ </div>
125
+ </div>
126
+ </div>
127
+
128
+ <div class="col-md-4">
129
+ <div class="card h-100 border-0 shadow-sm">
130
+ <div class="card-body text-center p-4">
131
+ <div class="bg-info text-white rounded-circle d-inline-flex align-items-center justify-content-center mb-3" style="width: 60px; height: 60px;">
132
+ <i class="bi bi-lightning-charge fs-4"></i>
133
+ </div>
134
+ <h5 class="card-title text-body-emphasis">AI-Powered Setup</h5>
135
+ <p class="card-text text-body-secondary">Intelligent installation automation that detects and fixes common issues automatically.</p>
136
+ </div>
137
+ </div>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ </div>
142
+
143
+ <!-- ================================ -->
144
+ <!-- QUICK START SECTION -->
74
145
  <!-- ================================ -->
75
- <!-- Particles.js for animated background effects -->
76
- <script src="/assets/js/particles-source.js"></script>
77
- <script src="/assets/js/particles.js"></script>
146
+ <div class="container-xl py-5 px-4 px-md-5" id="get-started">
147
+ <div class="row">
148
+ <div class="col-12 col-xl-10 mx-auto text-center">
149
+ <h2 class="display-5 fw-bold mb-4">Ready to Get Started?</h2>
150
+ <p class="lead mb-4">Choose your preferred installation method and be up and running in minutes</p>
151
+ {% include landing/landing-install-cards.html %}
152
+ </div>
153
+ </div>
154
+ </div>
data/_layouts/root.html CHANGED
@@ -38,7 +38,7 @@
38
38
  <!-- =============================================== -->
39
39
 
40
40
  <!-- Core site metadata, stylesheets, and external dependencies -->
41
- {% include head.html %}
41
+ {% include core/head.html %}
42
42
 
43
43
  <!-- Jekyll SEO plugin for enhanced search engine optimization -->
44
44
  <!-- Documentation: https://github.com/jekyll/jekyll-seo-tag -->
@@ -51,17 +51,16 @@
51
51
  <!-- ============================================== -->
52
52
 
53
53
  <!-- Inline SVG symbols for consistent iconography throughout the site -->
54
- {% include svg.html %}
54
+ {% include components/svg.html %}
55
55
 
56
56
  <!-- Google Tag Manager body code for analytics (if configured) -->
57
57
  <!-- Note: Currently commented out - uncomment when GTM is needed -->
58
- <!-- {% include google-tag-manager-body.html %} -->
59
58
 
60
59
  <!-- Main site header with navigation, branding, and search functionality -->
61
- {% include header.html %}
60
+ {% include core/header.html %}
62
61
 
63
62
  <!-- Site-wide information banner or announcement section -->
64
- {% include info-section.html %}
63
+ {% include components/info-section.html %}
65
64
 
66
65
  <!-- ======================== -->
67
66
  <!-- MAIN CONTENT AREA -->
@@ -76,16 +75,15 @@
76
75
  <!-- ======================== -->
77
76
 
78
77
  <!-- Site footer with links, copyright, and additional navigation -->
79
- {%- include footer.html -%}
78
+ {%- include core/footer.html -%}
80
79
 
81
80
  <!-- JavaScript dependencies and custom scripts -->
82
81
  <div>
83
82
  <!-- Search functionality (Algolia or similar) -->
84
83
  <!-- Note: Currently commented out - uncomment when search is implemented -->
85
- <!-- {% include algolia.html %} -->
86
84
 
87
85
  <!-- External JavaScript libraries and custom scripts -->
88
- {% include js-cdn.html %}
86
+ {% include components/js-cdn.html %}
89
87
  </div>
90
88
  </body>
91
89
  </html>
@@ -1,24 +1,21 @@
1
- document.addEventListener('DOMContentLoaded', (event) => {
2
- let mybutton = document.getElementById("backToTopBtn");
1
+ document.addEventListener('DOMContentLoaded', () => {
2
+ const btn = document.getElementById('backToTopBtn');
3
+ if (!btn) return;
3
4
 
4
- function topFunction() {
5
- document.body.scrollTop = 0; // For Safari
6
- document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
7
- mybutton.style.opacity = "75%";
8
- }
5
+ // Smooth scroll to top and keep accessible
6
+ const scrollToTop = (e) => {
7
+ if (e) e.preventDefault();
8
+ window.scrollTo({ top: 0, behavior: 'smooth' });
9
+ };
9
10
 
10
- if (mybutton) {
11
- mybutton.onclick = topFunction;
12
- }
11
+ btn.addEventListener('click', scrollToTop);
13
12
 
14
- // When the user scrolls down 20px from the top of the document, show the button
15
- window.onscroll = function() {scrollFunction()};
13
+ const toggle = () => {
14
+ const y = window.scrollY || document.documentElement.scrollTop || document.body.scrollTop || 0;
15
+ btn.style.display = y > 200 ? 'block' : 'none';
16
+ };
16
17
 
17
- function scrollFunction() {
18
- if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
19
- mybutton.style.display = "block";
20
- } else {
21
- mybutton.style.display = "none";
22
- }
23
- }
18
+ // Initialize state and bind listener without clobbering
19
+ toggle();
20
+ window.addEventListener('scroll', toggle, { passive: true });
24
21
  });
metadata CHANGED
@@ -1,57 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-zer0
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amr Abdel
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-01 00:00:00.000000000 Z
11
+ date: 2025-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '4.0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '4.0'
27
- - !ruby/object:Gem::Dependency
28
- name: jekyll-feed
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
17
+ - - ">="
32
18
  - !ruby/object:Gem::Version
33
- version: '0.15'
19
+ version: '0'
34
20
  type: :runtime
35
21
  prerelease: false
36
22
  version_requirements: !ruby/object:Gem::Requirement
37
23
  requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '0.15'
41
- - !ruby/object:Gem::Dependency
42
- name: jekyll-sitemap
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '1.4'
48
- type: :runtime
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
24
+ - - ">="
53
25
  - !ruby/object:Gem::Version
54
- version: '1.4'
26
+ version: '0'
55
27
  - !ruby/object:Gem::Dependency
56
28
  name: bundler
57
29
  requirement: !ruby/object:Gem::Requirement
@@ -110,43 +82,46 @@ files:
110
82
  - _data/navigation/docs.yml
111
83
  - _data/navigation/main.yml
112
84
  - _data/navigation/posts.yml
113
- - _includes/branding.html
114
- - _includes/breadcrumbs.html
115
- - _includes/dev-shortcuts.html
116
- - _includes/footer.html
117
- - _includes/giscus.html
118
- - _includes/google-analytics.html
119
- - _includes/google-tag-manager-body.html
120
- - _includes/google-tag-manager-head.html
121
- - _includes/halfmoon.html
122
- - _includes/head.html
123
- - _includes/header.html
124
- - _includes/info-section.html
125
- - _includes/intro.html
126
- - _includes/js-cdn.html
127
- - _includes/nav_list.html
128
- - _includes/navbar.html
129
- - _includes/powered-by.html
130
- - _includes/quick-index.html
131
- - _includes/searchbar.html
132
- - _includes/seo.html
133
- - _includes/sidebar-categories.html
134
- - _includes/sidebar-folders.html
135
- - _includes/sidebar-left.html
136
- - _includes/sidebar-right.html
137
- - _includes/sitemap.html
138
- - _includes/style.html
139
- - _includes/svg.html
140
- - _includes/toc
141
- - _includes/toc.html
142
- - _includes/zer0-env-var.html
85
+ - _data/navigation/quickstart.yml
86
+ - _includes/README.md
87
+ - _includes/analytics/google-analytics.html
88
+ - _includes/analytics/google-tag-manager-body.html
89
+ - _includes/analytics/google-tag-manager-head.html
90
+ - _includes/components/dev-shortcuts.html
91
+ - _includes/components/halfmoon.html
92
+ - _includes/components/info-section.html
93
+ - _includes/components/js-cdn.html
94
+ - _includes/components/mermaid.html
95
+ - _includes/components/powered-by.html
96
+ - _includes/components/quick-index.html
97
+ - _includes/components/searchbar.html
98
+ - _includes/components/svg.html
99
+ - _includes/components/zer0-env-var.html
100
+ - _includes/content/giscus.html
101
+ - _includes/content/intro.html
102
+ - _includes/content/seo.html
103
+ - _includes/content/sitemap.html
104
+ - _includes/content/toc.html
105
+ - _includes/core/branding.html
106
+ - _includes/core/footer.html
107
+ - _includes/core/head.html
108
+ - _includes/core/header.html
109
+ - _includes/docs/bootstrap-docs.html
110
+ - _includes/landing/landing-install-cards.html
111
+ - _includes/landing/landing-quick-links.html
112
+ - _includes/navigation/breadcrumbs.html
113
+ - _includes/navigation/nav_list.html
114
+ - _includes/navigation/navbar.html
115
+ - _includes/navigation/sidebar-categories.html
116
+ - _includes/navigation/sidebar-folders.html
117
+ - _includes/navigation/sidebar-left.html
118
+ - _includes/navigation/sidebar-right.html
143
119
  - _layouts/README.md
144
120
  - _layouts/blog.html
145
121
  - _layouts/collection.html
146
122
  - _layouts/default.html
147
123
  - _layouts/home.html
148
124
  - _layouts/index.html
149
- - _layouts/javascript.html
150
125
  - _layouts/journals.html
151
126
  - _layouts/landing.html
152
127
  - _layouts/root.html
@@ -190,7 +165,7 @@ metadata:
190
165
  changelog_uri: https://github.com/bamr87/zer0-mistakes/blob/main/CHANGELOG.md
191
166
  documentation_uri: https://github.com/bamr87/zer0-mistakes#readme
192
167
  allowed_push_host: https://rubygems.org
193
- post_install_message:
168
+ post_install_message:
194
169
  rdoc_options: []
195
170
  require_paths:
196
171
  - lib
@@ -205,8 +180,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
205
180
  - !ruby/object:Gem::Version
206
181
  version: '0'
207
182
  requirements: []
208
- rubygems_version: 3.0.3.1
209
- signing_key:
183
+ rubygems_version: 3.3.25
184
+ signing_key:
210
185
  specification_version: 4
211
186
  summary: Jekyll theme based on bootstrap and compatible with github pages
212
187
  test_files: []
@@ -1,57 +0,0 @@
1
- <!--
2
- file: footer.html
3
- path: _includes/footer.html
4
- includes: none
5
- descrition: Social Links and Branding
6
- -->
7
-
8
- <footer class="bd-footer container-xl d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
9
- <div class="col-sm d-flex align-items-center">
10
-
11
- <!-- Frameworks/Engines and Affiliations -->
12
- <ul class="nav col-sm justify-content-end list-unstyled d-flex align-items-center">
13
-
14
- <!-- Search for Site Frameworks in config file -->
15
- <span class="align-self">
16
- &copy; {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}. Powered by:
17
- </span>
18
- {% for power in site.powered_by %}
19
- <li class="btn ">
20
- <a href="{{ power.url }}" rel="nofollow">
21
- <i class="{{ site.default_icon }} {{ power.icon | default: site.powered_by.default }}" aria-hidden="true"></i>
22
- <!-- display name if there's enough space, else icon only -->
23
- <span class="d-none d-md-inline">
24
- {{ power.name }}
25
- </span>
26
- </a>
27
- </li>
28
- {% endfor %}
29
-
30
- <!-- Search for Site Affiliation links in config file -->
31
- {% for link in site.links %}
32
- <li class="btn ">
33
- <a href="{{ link.url }}" rel="nofollow">
34
- <i class="{{ site.default_icon }} {{ link.icon | default: site.links.default }}" aria-hidden="true"></i>
35
- <!-- display name if there's enough space, else icon only -->
36
- <span class="d-none d-md-inline">
37
- {{ link.label }}
38
- </span>
39
- </a>
40
- </li>
41
- {% endfor %}
42
-
43
- <!-- RSS Feed -->
44
- <li class="btn">
45
- <a href="{{ '/feed.xml' | relative_url }}">
46
- <i class="{{ site.default_icon }} bi-rss" aria-hidden="true"></i>
47
- <!-- https://icons.getbootstrap.com/icons/rss/ -->
48
- <span class="d-none d-md-inline">
49
- {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}
50
- </span>
51
- </a>
52
- </li>
53
- </ul>
54
-
55
- </div>
56
- </footer>
57
-
@@ -1,16 +0,0 @@
1
- <!-- giscus app - https://giscus.app/ - Feature # FR000001 -->
2
-
3
- <script src="https://giscus.app/client.js"
4
- data-repo="{{ site.repository }}"
5
- data-repo-id="{{ site.gisgus.data-repo-id }}"
6
- data-category-id="{{ site.gisgus.data-category-id }}"
7
- data-mapping="pathname"
8
- data-strict="1"
9
- data-reactions-enabled="1"
10
- data-emit-metadata="0"
11
- data-input-position="top"
12
- data-theme="preferred_color_scheme"
13
- data-lang="en"
14
- crossorigin="anonymous"
15
- async>
16
- </script>