ultimate-jekyll-manager 0.0.96 → 0.0.97

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 (35) hide show
  1. package/.playwright-mcp/page-2025-10-22T19-11-27-666Z.png +0 -0
  2. package/.playwright-mcp/page-2025-10-22T19-11-57-357Z.png +0 -0
  3. package/_backup/cover-old.html +55 -0
  4. package/dist/assets/css/core/utilities.scss +3 -1
  5. package/dist/assets/js/pages/app/index.js +16 -32
  6. package/dist/defaults/dist/{redirects/authentication/helpers/well-known-change-password.html → .well-known/change-password.html} +4 -1
  7. package/dist/defaults/dist/.well-known/security.txt +15 -0
  8. package/dist/defaults/dist/_layouts/blueprint/app.html +1 -1
  9. package/dist/defaults/dist/_layouts/modules/utilities/redirect.html +1 -1
  10. package/dist/defaults/dist/_layouts/themes/classy/frontend/core/cover.html +6 -9
  11. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/app.html +83 -0
  12. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/oauth2.html +44 -46
  13. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/reset.html +58 -60
  14. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/signin.html +67 -70
  15. package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/signup.html +79 -81
  16. package/dist/defaults/dist/humans.txt +25 -0
  17. package/dist/defaults/dist/opensearch.xml +26 -0
  18. package/dist/defaults/dist/pages/test/account/dashboard.html +3 -0
  19. package/dist/defaults/dist/pages/test/index.md +2 -2
  20. package/dist/defaults/dist/pages/test/libraries/ads.html +3 -0
  21. package/dist/defaults/dist/pages/test/libraries/bootstrap-components.html +11 -2
  22. package/dist/defaults/dist/pages/test/libraries/cover.html +47 -0
  23. package/dist/defaults/dist/pages/test/libraries/error.html +3 -0
  24. package/dist/defaults/dist/pages/test/libraries/lazy-loading.html +3 -0
  25. package/dist/defaults/dist/pages/test/redirect/external.md +3 -0
  26. package/dist/defaults/dist/pages/test/redirect/internal.md +3 -0
  27. package/dist/defaults/dist/pages/test/translation/index.md +2 -2
  28. package/dist/defaults/dist/redirects/authentication/helpers/change-password.html +1 -1
  29. package/dist/defaults/dist/redirects/authentication/helpers/forgot.html +1 -1
  30. package/dist/defaults/dist/redirects/authentication/helpers/recover.html +1 -1
  31. package/dist/defaults/dist/redirects/authentication/helpers/reset-password.html +1 -1
  32. package/dist/defaults/dist/sitemap.html +112 -28
  33. package/dist/defaults/dist/sitemap.xml +6 -1
  34. package/firebase-debug.log +8 -0
  35. package/package.json +1 -1
@@ -1,38 +1,122 @@
1
1
  ---
2
2
  ### ALL PAGES ###
3
- layout: core/root
3
+ layout: themes/classy/frontend/core/minimal
4
4
  permalink: /sitemap
5
5
 
6
6
  ### REGULAR PAGES ###
7
+ sitemap:
8
+ # include: false
7
9
  meta:
8
- index: false
10
+ title: "Sitemap - {{ site.brand.name }}"
11
+ description: "This sitemap has been compiled to better serve those who are looking for a specific page on {{ site.brand.name }}."
12
+ breadcrumb: "Sitemap"
13
+ # index: false
9
14
 
10
- sitemap:
11
- include: false
15
+ ### WEB MANAGER CONFIG ###
16
+ web_manager:
17
+ exitPopup:
18
+ enabled: false
12
19
  ---
13
20
 
14
- <!DOCTYPE html>
15
- <html lang="en" dir="ltr">
16
- <head>
17
- <meta charset="utf-8">
18
- <title></title>
19
- </head>
20
- <body>
21
- {% for page in site.pages %}
22
- <!-- Skip reference pages -->
23
- {%- if page.url contains '/@reference' -%}
24
- {%- continue -%}
25
- {%- endif -%}
26
-
27
- <ul>
28
- <li>{{ page.url }}</li>
29
- <li>
30
- <ul>
31
- <li>{{ page.title }}</li>
32
- </ul>
33
- </li>
34
- </ul>
21
+ {% assign all_pages = site.pages %}
22
+ {% for collection in site.collections %}
23
+ {% assign all_pages = all_pages | concat: collection.docs %}
24
+ {% endfor %}
25
+
26
+ {% comment %} Build a hash of pages organized by their path segments {% endcomment %}
27
+ {% assign sitemap_sections = "" | split: "" %}
28
+ {% assign processed_paths = "" | split: "" %}
29
+
30
+ {% for page in all_pages %}
31
+ {%- if page.url contains '/_' -%}
32
+ {%- continue -%}
33
+ {%- endif -%}
34
+
35
+ {%- assign url_start = page.url | slice: 0, 5 -%}
36
+ {%- if url_start == '/test' -%}
37
+ {%- continue -%}
38
+ {%- endif -%}
39
+
40
+ {%- if page.layout contains 'redirect' -%}
41
+ {%- continue -%}
42
+ {%- endif -%}
43
+
44
+ {%- if page.resolved.sitemap.include == false or page.layout_data.sitemap.include == false -%}
45
+ {%- continue -%}
46
+ {%- endif -%}
47
+
48
+ {%- if page.url contains '.js' or page.url contains '.xml' or page.url contains '.json' -%}
49
+ {%- continue -%}
50
+ {%- endif -%}
51
+
52
+ {% assign url_parts = page.url | split: '/' %}
53
+ {% assign section_name = "Root Pages" %}
54
+
55
+ {% if url_parts.size > 2 %}
56
+ {% assign section_name = url_parts[1] | replace: '-', ' ' | replace: '_', ' ' | capitalize %}
57
+ {% endif %}
58
+
59
+ {% unless processed_paths contains section_name %}
60
+ {% assign processed_paths = processed_paths | push: section_name %}
61
+ {% endunless %}
62
+ {% endfor %}
35
63
 
36
- {%- endfor -%}
37
- </body>
38
- </html>
64
+ {% assign sorted_sections = processed_paths | sort %}
65
+
66
+ <div class="container py-5">
67
+ <div class="row justify-content-center">
68
+ <div class="col-12 col-lg-10">
69
+ <h1 class="mb-4">Sitemap</h1>
70
+ <p class="lead mb-5">Browse all pages on {{ site.brand.name }}</p>
71
+
72
+ {% for section in sorted_sections %}
73
+ <section class="mb-5">
74
+ <h2 class="h4 mb-3 pb-2 border-bottom">{{ section }}</h2>
75
+ <ul class="list-unstyled">
76
+ {% for page in all_pages %}
77
+ {%- if page.url contains '/@reference' or page.url contains '/_' -%}
78
+ {%- continue -%}
79
+ {%- endif -%}
80
+
81
+ {%- assign url_start = page.url | slice: 0, 5 -%}
82
+ {%- if url_start == '/test' -%}
83
+ {%- continue -%}
84
+ {%- endif -%}
85
+
86
+ {%- if page.layout contains 'redirect' -%}
87
+ {%- continue -%}
88
+ {%- endif -%}
89
+
90
+ {%- if page.resolved.sitemap.include == false or page.layout_data.sitemap.include == false -%}
91
+ {%- continue -%}
92
+ {%- endif -%}
93
+
94
+ {%- if page.url contains '.js' or page.url contains '.xml' or page.url contains '.json' -%}
95
+ {%- continue -%}
96
+ {%- endif -%}
97
+
98
+ {% assign url_parts = page.url | split: '/' %}
99
+ {% assign page_section = "Root Pages" %}
100
+
101
+ {% if url_parts.size > 2 %}
102
+ {% assign page_section = url_parts[1] | replace: '-', ' ' | replace: '_', ' ' | capitalize %}
103
+ {% endif %}
104
+
105
+ {% if page_section == section %}
106
+ {% assign page_title = page.title | default: page.meta.title | default: page.url %}
107
+ {% assign depth = url_parts.size | minus: 2 %}
108
+ {% if depth < 0 %}{% assign depth = 0 %}{% endif %}
109
+
110
+ <li class="mb-2" style="margin-left: {{ depth | times: 20 }}px;">
111
+ <a href="{{ page.url }}" class="text-decoration-none">
112
+ {{ page_title }}
113
+ </a>
114
+ </li>
115
+ {% endif %}
116
+ {% endfor %}
117
+ </ul>
118
+ </section>
119
+ {% endfor %}
120
+ </div>
121
+ </div>
122
+ </div>
@@ -23,7 +23,12 @@ sitemap:
23
23
  {% endfor %}
24
24
 
25
25
  {% for page in pages %}
26
- {%- if page.url contains '/@reference' or page.url contains '/_' -%}
26
+ {%- if page.url contains '/_' -%}
27
+ {%- continue -%}
28
+ {%- endif -%}
29
+
30
+ {%- assign url_start = page.url | slice: 0, 5 -%}
31
+ {%- if url_start == '/test' -%}
27
32
  {%- continue -%}
28
33
  {%- endif -%}
29
34
 
@@ -94,3 +94,11 @@
94
94
  [debug] [2025-10-22T10:58:48.151Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
95
95
  [debug] [2025-10-22T10:58:48.151Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
96
96
  [debug] [2025-10-22T10:58:48.152Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
97
+ [debug] [2025-10-22T20:10:50.608Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
98
+ [debug] [2025-10-22T20:10:50.610Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
99
+ [debug] [2025-10-22T20:10:50.611Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
100
+ [debug] [2025-10-22T20:10:50.611Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
101
+ [debug] [2025-10-22T20:10:50.610Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
102
+ [debug] [2025-10-22T20:10:50.612Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
103
+ [debug] [2025-10-22T20:10:50.612Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
104
+ [debug] [2025-10-22T20:10:50.613Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "0.0.96",
3
+ "version": "0.0.97",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {