ultimate-jekyll-manager 0.0.95 → 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.
- package/.playwright-mcp/page-2025-10-22T19-11-27-666Z.png +0 -0
- package/.playwright-mcp/page-2025-10-22T19-11-57-357Z.png +0 -0
- package/_backup/cover-old.html +55 -0
- package/dist/assets/css/core/utilities.scss +3 -1
- package/dist/assets/js/pages/app/index.js +16 -32
- package/dist/defaults/dist/{redirects/authentication/helpers/well-known-change-password.html → .well-known/change-password.html} +4 -1
- package/dist/defaults/dist/.well-known/security.txt +15 -0
- package/dist/defaults/dist/_layouts/blueprint/app.html +1 -1
- package/dist/defaults/dist/_layouts/modules/utilities/redirect.html +1 -1
- package/dist/defaults/dist/_layouts/themes/classy/frontend/core/cover.html +6 -9
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/app.html +83 -0
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/oauth2.html +44 -46
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/reset.html +58 -60
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/signin.html +67 -70
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/auth/signup.html +79 -81
- package/dist/defaults/dist/humans.txt +25 -0
- package/dist/defaults/dist/opensearch.xml +26 -0
- package/dist/defaults/dist/pages/test/account/dashboard.html +3 -0
- package/dist/defaults/dist/pages/test/index.md +2 -2
- package/dist/defaults/dist/pages/test/libraries/ads.html +3 -0
- package/dist/defaults/dist/pages/test/libraries/bootstrap-components.html +11 -2
- package/dist/defaults/dist/pages/test/libraries/cover.html +47 -0
- package/dist/defaults/dist/pages/test/libraries/error.html +3 -0
- package/dist/defaults/dist/pages/test/libraries/lazy-loading.html +3 -0
- package/dist/defaults/dist/pages/test/redirect/external.md +3 -0
- package/dist/defaults/dist/pages/test/redirect/internal.md +3 -0
- package/dist/defaults/dist/pages/test/translation/index.md +2 -2
- package/dist/defaults/dist/redirects/authentication/helpers/change-password.html +1 -1
- package/dist/defaults/dist/redirects/authentication/helpers/forgot.html +1 -1
- package/dist/defaults/dist/redirects/authentication/helpers/recover.html +1 -1
- package/dist/defaults/dist/redirects/authentication/helpers/reset-password.html +1 -1
- package/dist/defaults/dist/sitemap.html +112 -28
- package/dist/defaults/dist/sitemap.xml +7 -2
- package/firebase-debug.log +16 -0
- package/package.json +1 -1
|
@@ -1,38 +1,122 @@
|
|
|
1
1
|
---
|
|
2
2
|
### ALL PAGES ###
|
|
3
|
-
layout: core/
|
|
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
|
-
|
|
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
|
-
|
|
11
|
-
|
|
15
|
+
### WEB MANAGER CONFIG ###
|
|
16
|
+
web_manager:
|
|
17
|
+
exitPopup:
|
|
18
|
+
enabled: false
|
|
12
19
|
---
|
|
13
20
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
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
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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>
|
|
@@ -13,7 +13,7 @@ sitemap:
|
|
|
13
13
|
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
14
14
|
xmlns:xhtml="http://www.w3.org/1999/xhtml"
|
|
15
15
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
16
|
-
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
|
|
16
|
+
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"
|
|
17
17
|
>
|
|
18
18
|
{% assign pages = site.pages %}
|
|
19
19
|
{% assign default-time = site.time | date_to_xmlschema %}
|
|
@@ -23,7 +23,12 @@ sitemap:
|
|
|
23
23
|
{% endfor %}
|
|
24
24
|
|
|
25
25
|
{% for page in pages %}
|
|
26
|
-
{%- if 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
|
|
package/firebase-debug.log
CHANGED
|
@@ -86,3 +86,19 @@
|
|
|
86
86
|
[debug] [2025-10-22T10:35:12.198Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
87
87
|
[debug] [2025-10-22T10:35:12.198Z] > 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"]
|
|
88
88
|
[debug] [2025-10-22T10:35:12.198Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
89
|
+
[debug] [2025-10-22T10:58:48.148Z] > 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"]
|
|
90
|
+
[debug] [2025-10-22T10:58:48.148Z] > 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"]
|
|
91
|
+
[debug] [2025-10-22T10:58:48.151Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
92
|
+
[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"]
|
|
93
|
+
[debug] [2025-10-22T10:58:48.151Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
94
|
+
[debug] [2025-10-22T10:58:48.151Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
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
|
+
[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)
|