ultimate-jekyll-manager 0.0.141 → 0.0.143
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/dist/assets/css/core/_lazy-loading.scss +13 -0
- package/dist/assets/js/libs/form-manager.js +3 -3
- package/dist/assets/js/pages/index.js +0 -4
- package/dist/assets/themes/classy/_config.scss +2 -1
- package/dist/assets/themes/classy/_theme.js +5 -0
- package/dist/assets/themes/classy/css/base/_spacing.scss +4 -0
- package/dist/assets/themes/classy/css/components/_buttons.scss +14 -19
- package/dist/assets/themes/classy/js/hero-demo-form.js +42 -0
- package/dist/defaults/dist/_includes/core/foot.html +27 -1
- package/dist/defaults/dist/_layouts/blueprint/admin/firebase/index.html +9 -7
- package/dist/defaults/dist/_layouts/blueprint/admin/notifications/new.html +3 -1
- package/dist/defaults/dist/_layouts/blueprint/admin/users/index.html +4 -4
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/account/index.html +1 -1
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/blog/post.html +2 -1
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/download.html +7 -7
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/index.html +188 -12
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/payment/checkout.html +1 -0
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/pricing.html +61 -1
- package/dist/defaults/dist/pages/test/components/hero-demo-custom.html +60 -0
- package/dist/defaults/dist/pages/test/components/hero-demo-form.html +83 -0
- package/dist/defaults/dist/pages/test/components/hero-demo-input.html +47 -0
- package/dist/defaults/dist/pages/test/components/hero-demo-side.html +43 -0
- package/dist/defaults/dist/pages/test/components/hero-demo-video.html +43 -0
- package/dist/defaults/dist/pages/test/translation/index.md +2 -1
- package/dist/defaults/dist/robots.txt +18 -0
- package/dist/index.js +7 -0
- package/firebase-debug.log +366 -0
- package/package.json +1 -1
|
@@ -262,6 +262,7 @@ web_manager:
|
|
|
262
262
|
<!-- Discount Code -->
|
|
263
263
|
<div class="mb-4 wm-binding-skeleton" data-wm-bind="@show checkout">
|
|
264
264
|
<div class="input-group" data-wm-bind="@show checkout" hidden>
|
|
265
|
+
<label for="discount-code" class="visually-hidden">Discount code</label>
|
|
265
266
|
<input type="text" class="form-control rounded-start-3 border py-2 px-3 text-start" id="discount-code" name="discount-code" placeholder="Discount code" autocomplete="off">
|
|
266
267
|
<button class="btn btn-adaptive rounded-end-3 border px-4" type="button" id="apply-discount" data-action="apply-discount">Apply</button>
|
|
267
268
|
</div>
|
|
@@ -37,6 +37,7 @@ pricing:
|
|
|
37
37
|
monthly: 0
|
|
38
38
|
annually: 0
|
|
39
39
|
features:
|
|
40
|
+
# Common features
|
|
40
41
|
- id: "credits"
|
|
41
42
|
name: "Credits"
|
|
42
43
|
value: 10
|
|
@@ -45,6 +46,11 @@ pricing:
|
|
|
45
46
|
name: "Exports"
|
|
46
47
|
value: "Watermarked"
|
|
47
48
|
icon: "download"
|
|
49
|
+
# Additional features
|
|
50
|
+
- id: "storage"
|
|
51
|
+
name: "Logo Storage"
|
|
52
|
+
value: "7 days"
|
|
53
|
+
icon: "clock"
|
|
48
54
|
|
|
49
55
|
- id: "starter"
|
|
50
56
|
name: "Starter"
|
|
@@ -54,6 +60,7 @@ pricing:
|
|
|
54
60
|
monthly: 28
|
|
55
61
|
annually: 276 # Total annual price (~20% off monthly)
|
|
56
62
|
features:
|
|
63
|
+
# Common features
|
|
57
64
|
- id: "credits"
|
|
58
65
|
name: "Credits"
|
|
59
66
|
value: 100
|
|
@@ -62,6 +69,7 @@ pricing:
|
|
|
62
69
|
name: "Exports"
|
|
63
70
|
value: "Unlimited"
|
|
64
71
|
icon: "download"
|
|
72
|
+
# Additional features
|
|
65
73
|
- id: "api_access"
|
|
66
74
|
name: "API Access"
|
|
67
75
|
value: "Full"
|
|
@@ -80,6 +88,7 @@ pricing:
|
|
|
80
88
|
monthly: 50
|
|
81
89
|
annually: 504 # Total annual price (~16% off monthly)
|
|
82
90
|
features:
|
|
91
|
+
# Common features
|
|
83
92
|
- id: "credits"
|
|
84
93
|
name: "Credits"
|
|
85
94
|
value: 200
|
|
@@ -88,6 +97,7 @@ pricing:
|
|
|
88
97
|
name: "Exports"
|
|
89
98
|
value: "Unlimited"
|
|
90
99
|
icon: "download"
|
|
100
|
+
# Additional features
|
|
91
101
|
|
|
92
102
|
- id: "max"
|
|
93
103
|
name: "Max"
|
|
@@ -97,6 +107,7 @@ pricing:
|
|
|
97
107
|
monthly: 100
|
|
98
108
|
annually: 960 # Total annual price (20% off monthly)
|
|
99
109
|
features:
|
|
110
|
+
# Common features
|
|
100
111
|
- id: "credits"
|
|
101
112
|
name: "Credits"
|
|
102
113
|
value: 500
|
|
@@ -105,6 +116,7 @@ pricing:
|
|
|
105
116
|
name: "Exports"
|
|
106
117
|
value: "Unlimited"
|
|
107
118
|
icon: "download"
|
|
119
|
+
# Additional features
|
|
108
120
|
- id: "team_collaboration"
|
|
109
121
|
name: "Team Collaboration"
|
|
110
122
|
value: "Included"
|
|
@@ -438,6 +450,54 @@ faqs:
|
|
|
438
450
|
{% endfor %}
|
|
439
451
|
</ul>
|
|
440
452
|
|
|
453
|
+
<!-- Show Additional features for the first (Basic) plan -->
|
|
454
|
+
{% if forloop.index == 1 %}
|
|
455
|
+
{% assign has_unique_basic = false %}
|
|
456
|
+
{% for feature in plan.features %}
|
|
457
|
+
{% unless common_feature_ids contains feature.id %}
|
|
458
|
+
{% assign has_unique_basic = true %}
|
|
459
|
+
{% break %}
|
|
460
|
+
{% endunless %}
|
|
461
|
+
{% endfor %}
|
|
462
|
+
|
|
463
|
+
{% if has_unique_basic %}
|
|
464
|
+
<div class="text-muted small mb-2">
|
|
465
|
+
<em>What you get:</em>
|
|
466
|
+
</div>
|
|
467
|
+
<ul class="list-unstyled mb-0">
|
|
468
|
+
{% for feature in plan.features %}
|
|
469
|
+
{% unless common_feature_ids contains feature.id %}
|
|
470
|
+
{% assign feature_definition = nil %}
|
|
471
|
+
{% for def in page.resolved.pricing.definitions %}
|
|
472
|
+
{% if def.id == feature.id %}
|
|
473
|
+
{% assign feature_definition = def.definition %}
|
|
474
|
+
{% break %}
|
|
475
|
+
{% endif %}
|
|
476
|
+
{% endfor %}
|
|
477
|
+
<li class="d-flex align-items-start mb-2 {% if forloop.last %}mb-0{% endif %}">
|
|
478
|
+
<span class="me-3">{% uj_icon feature.icon, "fa-md" %}</span>
|
|
479
|
+
<span>
|
|
480
|
+
{% if feature.value == "24/7" %}
|
|
481
|
+
{{ feature.value }}
|
|
482
|
+
{% elsif feature.value == "Included" or feature.value == "Available" or feature.value == "Full" %}
|
|
483
|
+
<!-- No prefix for these values -->
|
|
484
|
+
{% else %}
|
|
485
|
+
{{ feature.value | uj_commaify }}
|
|
486
|
+
{% endif %}
|
|
487
|
+
{% iftruthy feature_definition %}
|
|
488
|
+
<span class="text-decoration-underline text-decoration-dotted cursor-help" data-bs-toggle="tooltip" data-bs-title="{{ feature_definition }}">{{ feature.name }}</span>
|
|
489
|
+
{% endiftruthy %}
|
|
490
|
+
{% iffalsy feature_definition %}
|
|
491
|
+
{{ feature.name }}
|
|
492
|
+
{% endiffalsy %}
|
|
493
|
+
</span>
|
|
494
|
+
</li>
|
|
495
|
+
{% endunless %}
|
|
496
|
+
{% endfor %}
|
|
497
|
+
</ul>
|
|
498
|
+
{% endif %}
|
|
499
|
+
{% endif %}
|
|
500
|
+
|
|
441
501
|
<!-- Show "Everything in previous plan" for non-Basic plans -->
|
|
442
502
|
{% if forloop.index > 1 %}
|
|
443
503
|
<!-- Check if there are additional features -->
|
|
@@ -463,7 +523,7 @@ faqs:
|
|
|
463
523
|
</em>
|
|
464
524
|
</div>
|
|
465
525
|
|
|
466
|
-
<!-- Additional/
|
|
526
|
+
<!-- Additional/Additional features if they exist -->
|
|
467
527
|
{% if has_additional %}
|
|
468
528
|
<ul class="list-unstyled mb-0">
|
|
469
529
|
{% for feature in plan.features %}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
### ALL PAGES ###
|
|
3
|
+
layout: blueprint/index
|
|
4
|
+
permalink: /test/components/hero-demo-custom
|
|
5
|
+
|
|
6
|
+
### PAGE CONFIG ###
|
|
7
|
+
asset_path: index
|
|
8
|
+
sitemap:
|
|
9
|
+
include: false
|
|
10
|
+
meta:
|
|
11
|
+
title: "Hero Demo: Custom Type"
|
|
12
|
+
description: "Test page demonstrating the custom hero demo type"
|
|
13
|
+
index: false
|
|
14
|
+
|
|
15
|
+
# Hero Section
|
|
16
|
+
hero:
|
|
17
|
+
tagline: "Custom demo"
|
|
18
|
+
headline: "Design your"
|
|
19
|
+
headline_accent: "brand"
|
|
20
|
+
description: "Try our interactive brand builder right here"
|
|
21
|
+
demo:
|
|
22
|
+
enabled: true
|
|
23
|
+
type: "custom"
|
|
24
|
+
placement: "bottom"
|
|
25
|
+
options:
|
|
26
|
+
class: "bg-glassy rounded-4 p-4 mw-md"
|
|
27
|
+
subtext: "Customize and preview in real-time"
|
|
28
|
+
content: |
|
|
29
|
+
<div class="row g-3 text-start">
|
|
30
|
+
<div class="col-12">
|
|
31
|
+
<label for="color-picker" class="form-label fw-bold">{% uj_icon "palette", "me-1" %}Choose your brand color:</label>
|
|
32
|
+
<input type="color" class="form-control form-control-color form-control-lg border-0 w-100" id="color-picker" value="#6366f1" aria-label="Choose your brand color">
|
|
33
|
+
</div>
|
|
34
|
+
<div class="col-12">
|
|
35
|
+
<label for="style-select" class="form-label fw-bold">{% uj_icon "swatchbook", "me-1" %}Select style:</label>
|
|
36
|
+
<select class="form-select form-select-lg border-0" id="style-select" aria-label="Select style">
|
|
37
|
+
<option value="modern">Modern</option>
|
|
38
|
+
<option value="classic">Classic</option>
|
|
39
|
+
<option value="minimal">Minimal</option>
|
|
40
|
+
<option value="bold">Bold</option>
|
|
41
|
+
</select>
|
|
42
|
+
</div>
|
|
43
|
+
<div class="col-12">
|
|
44
|
+
<a href="/dashboard" class="btn btn-adaptive-inverse btn-lg px-4 w-100">
|
|
45
|
+
{% uj_icon "palette", "me-2" %}
|
|
46
|
+
Apply Theme
|
|
47
|
+
</a>
|
|
48
|
+
</div>
|
|
49
|
+
</div>
|
|
50
|
+
primary_button:
|
|
51
|
+
text: "Get Started Free"
|
|
52
|
+
icon: "rocket"
|
|
53
|
+
href: "/dashboard"
|
|
54
|
+
class: "btn-light"
|
|
55
|
+
secondary_button:
|
|
56
|
+
text: "Explore Solutions"
|
|
57
|
+
icon: "book-open"
|
|
58
|
+
href: "/pricing"
|
|
59
|
+
class: "btn-outline-light"
|
|
60
|
+
---
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
---
|
|
2
|
+
### ALL PAGES ###
|
|
3
|
+
layout: blueprint/index
|
|
4
|
+
permalink: /test/components/hero-demo-form
|
|
5
|
+
|
|
6
|
+
### PAGE CONFIG ###
|
|
7
|
+
asset_path: index
|
|
8
|
+
sitemap:
|
|
9
|
+
include: false
|
|
10
|
+
meta:
|
|
11
|
+
title: "Hero Demo: Form Type"
|
|
12
|
+
description: "Test page demonstrating the form hero demo type"
|
|
13
|
+
index: false
|
|
14
|
+
|
|
15
|
+
# Hero Section
|
|
16
|
+
hero:
|
|
17
|
+
tagline: "Form demo"
|
|
18
|
+
headline: "Get your custom"
|
|
19
|
+
headline_accent: "quote"
|
|
20
|
+
description: "Tell us about your project and we'll get back to you within 24 hours"
|
|
21
|
+
demo:
|
|
22
|
+
enabled: true
|
|
23
|
+
type: "form"
|
|
24
|
+
placement: "bottom"
|
|
25
|
+
options:
|
|
26
|
+
class: "mw-lg"
|
|
27
|
+
redirect: "/contact"
|
|
28
|
+
subtext: "We respond within 24 hours"
|
|
29
|
+
fields:
|
|
30
|
+
- name: "industry"
|
|
31
|
+
label: "Industry"
|
|
32
|
+
icon: "building"
|
|
33
|
+
type: "select"
|
|
34
|
+
size: "half"
|
|
35
|
+
placeholder: "Select industry"
|
|
36
|
+
options:
|
|
37
|
+
- value: "technology"
|
|
38
|
+
label: "Technology"
|
|
39
|
+
- value: "healthcare"
|
|
40
|
+
label: "Healthcare"
|
|
41
|
+
- value: "finance"
|
|
42
|
+
label: "Finance"
|
|
43
|
+
- value: "retail"
|
|
44
|
+
label: "Retail"
|
|
45
|
+
- name: "company_size"
|
|
46
|
+
label: "Company Size"
|
|
47
|
+
icon: "users"
|
|
48
|
+
type: "select"
|
|
49
|
+
size: "half"
|
|
50
|
+
placeholder: "Select size"
|
|
51
|
+
options:
|
|
52
|
+
- value: "1-10"
|
|
53
|
+
label: "1-10 employees"
|
|
54
|
+
- value: "11-50"
|
|
55
|
+
label: "11-50 employees"
|
|
56
|
+
- value: "51-200"
|
|
57
|
+
label: "51-200 employees"
|
|
58
|
+
- value: "200+"
|
|
59
|
+
label: "200+ employees"
|
|
60
|
+
- name: "message"
|
|
61
|
+
label: "Tell us about your project"
|
|
62
|
+
icon: "comment"
|
|
63
|
+
type: "textarea"
|
|
64
|
+
size: "full"
|
|
65
|
+
placeholder: "Describe your goals, challenges, or questions..."
|
|
66
|
+
rows: 4
|
|
67
|
+
required: true
|
|
68
|
+
button:
|
|
69
|
+
text: "Get Quote"
|
|
70
|
+
icon: "paper-plane"
|
|
71
|
+
full_width: true
|
|
72
|
+
class: "btn-adaptive-inverse"
|
|
73
|
+
primary_button:
|
|
74
|
+
text: "Get Started Free"
|
|
75
|
+
icon: "rocket"
|
|
76
|
+
href: "/dashboard"
|
|
77
|
+
class: "btn-light"
|
|
78
|
+
secondary_button:
|
|
79
|
+
text: "Explore Solutions"
|
|
80
|
+
icon: "book-open"
|
|
81
|
+
href: "/pricing"
|
|
82
|
+
class: "btn-outline-light"
|
|
83
|
+
---
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
---
|
|
2
|
+
### ALL PAGES ###
|
|
3
|
+
layout: blueprint/index
|
|
4
|
+
permalink: /test/components/hero-demo-input
|
|
5
|
+
|
|
6
|
+
### PAGE CONFIG ###
|
|
7
|
+
asset_path: index
|
|
8
|
+
sitemap:
|
|
9
|
+
include: false
|
|
10
|
+
meta:
|
|
11
|
+
title: "Hero Demo: Input Type"
|
|
12
|
+
description: "Test page demonstrating the input hero demo type"
|
|
13
|
+
index: false
|
|
14
|
+
|
|
15
|
+
# Hero Section
|
|
16
|
+
hero:
|
|
17
|
+
tagline: "Input demo"
|
|
18
|
+
headline: "Create your logo in"
|
|
19
|
+
headline_accent: "seconds"
|
|
20
|
+
description: "Enter your business name and watch the magic happen"
|
|
21
|
+
demo:
|
|
22
|
+
enabled: true
|
|
23
|
+
type: "input"
|
|
24
|
+
placement: "bottom"
|
|
25
|
+
options:
|
|
26
|
+
class: "mw-md"
|
|
27
|
+
placeholder: "Enter your business name..."
|
|
28
|
+
name: "business_name"
|
|
29
|
+
input_type: "text"
|
|
30
|
+
required: true
|
|
31
|
+
redirect: "/dashboard"
|
|
32
|
+
subtext: "No credit card required - 5 free logos"
|
|
33
|
+
button:
|
|
34
|
+
text: "Generate Logo"
|
|
35
|
+
icon: "sparkles"
|
|
36
|
+
class: "btn-adaptive-inverse"
|
|
37
|
+
primary_button:
|
|
38
|
+
text: "Get Started Free"
|
|
39
|
+
icon: "rocket"
|
|
40
|
+
href: "/dashboard"
|
|
41
|
+
class: "btn-light"
|
|
42
|
+
secondary_button:
|
|
43
|
+
text: "Explore Solutions"
|
|
44
|
+
icon: "book-open"
|
|
45
|
+
href: "/pricing"
|
|
46
|
+
class: "btn-outline-light"
|
|
47
|
+
---
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
### ALL PAGES ###
|
|
3
|
+
layout: blueprint/index
|
|
4
|
+
permalink: /test/components/hero-demo-side
|
|
5
|
+
|
|
6
|
+
### PAGE CONFIG ###
|
|
7
|
+
asset_path: index
|
|
8
|
+
sitemap:
|
|
9
|
+
include: false
|
|
10
|
+
meta:
|
|
11
|
+
title: "Hero Demo: Video Type"
|
|
12
|
+
description: "Test page demonstrating the video hero demo type"
|
|
13
|
+
index: false
|
|
14
|
+
|
|
15
|
+
# Hero Section
|
|
16
|
+
hero:
|
|
17
|
+
tagline: "Video demo"
|
|
18
|
+
headline: "See {{ site.brand.name}} in"
|
|
19
|
+
headline_accent: "action"
|
|
20
|
+
description: "Watch how easy it is to create stunning logos with our AI-powered platform"
|
|
21
|
+
demo:
|
|
22
|
+
enabled: true
|
|
23
|
+
type: "video"
|
|
24
|
+
placement: "side"
|
|
25
|
+
options:
|
|
26
|
+
class: "mw-lg"
|
|
27
|
+
src: "https://cdn.itwcreativeworks.com/assets/sample/videos/demos/16x9/sample-demo-1.webm"
|
|
28
|
+
autoplay: true
|
|
29
|
+
loop: true
|
|
30
|
+
muted: true
|
|
31
|
+
controls: false
|
|
32
|
+
subtext: "No sound - autoplay enabled"
|
|
33
|
+
primary_button:
|
|
34
|
+
text: "Get Started Free"
|
|
35
|
+
icon: "rocket"
|
|
36
|
+
href: "/dashboard"
|
|
37
|
+
class: "btn-light"
|
|
38
|
+
secondary_button:
|
|
39
|
+
text: "Explore Solutions"
|
|
40
|
+
icon: "book-open"
|
|
41
|
+
href: "/pricing"
|
|
42
|
+
class: "btn-outline-light"
|
|
43
|
+
---
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
---
|
|
2
|
+
### ALL PAGES ###
|
|
3
|
+
layout: blueprint/index
|
|
4
|
+
permalink: /test/components/hero-demo-video
|
|
5
|
+
|
|
6
|
+
### PAGE CONFIG ###
|
|
7
|
+
asset_path: index
|
|
8
|
+
sitemap:
|
|
9
|
+
include: false
|
|
10
|
+
meta:
|
|
11
|
+
title: "Hero Demo: Video Type"
|
|
12
|
+
description: "Test page demonstrating the video hero demo type"
|
|
13
|
+
index: false
|
|
14
|
+
|
|
15
|
+
# Hero Section
|
|
16
|
+
hero:
|
|
17
|
+
tagline: "Video demo"
|
|
18
|
+
headline: "See {{ site.brand.name}} in"
|
|
19
|
+
headline_accent: "action"
|
|
20
|
+
description: "Watch how easy it is to create stunning logos with our AI-powered platform"
|
|
21
|
+
demo:
|
|
22
|
+
enabled: true
|
|
23
|
+
type: "video"
|
|
24
|
+
placement: "bottom"
|
|
25
|
+
options:
|
|
26
|
+
class: "mw-lg"
|
|
27
|
+
src: "https://cdn.itwcreativeworks.com/assets/sample/videos/demos/16x9/sample-demo-1.webm"
|
|
28
|
+
autoplay: true
|
|
29
|
+
loop: true
|
|
30
|
+
muted: true
|
|
31
|
+
controls: false
|
|
32
|
+
subtext: "No sound - autoplay enabled"
|
|
33
|
+
primary_button:
|
|
34
|
+
text: "Get Started Free"
|
|
35
|
+
icon: "rocket"
|
|
36
|
+
href: "/dashboard"
|
|
37
|
+
class: "btn-light"
|
|
38
|
+
secondary_button:
|
|
39
|
+
text: "Explore Solutions"
|
|
40
|
+
icon: "book-open"
|
|
41
|
+
href: "/pricing"
|
|
42
|
+
class: "btn-outline-light"
|
|
43
|
+
---
|
|
@@ -46,7 +46,8 @@ By vising {{ brand }}, you agree to comply.
|
|
|
46
46
|
|
|
47
47
|
## This is an input
|
|
48
48
|
<div class="form-group">
|
|
49
|
-
<
|
|
49
|
+
<label for="test-email" class="visually-hidden">Your email</label>
|
|
50
|
+
<input type="email" id="test-email" name="slap_honey" class="form-control" placeholder="Your Email">
|
|
50
51
|
</div>
|
|
51
52
|
|
|
52
53
|
## This button has a title
|
|
@@ -16,11 +16,19 @@ Disallow: /@reference/
|
|
|
16
16
|
Noindex: /@reference/
|
|
17
17
|
Disallow: /pages/@reference/
|
|
18
18
|
Noindex: /pages/@reference/
|
|
19
|
+
|
|
19
20
|
#
|
|
20
21
|
# Admin Pages
|
|
21
22
|
#
|
|
22
23
|
Disallow: /admin/
|
|
23
24
|
Noindex: /admin/
|
|
25
|
+
|
|
26
|
+
#
|
|
27
|
+
# Test Pages
|
|
28
|
+
#
|
|
29
|
+
Disallow: /test/
|
|
30
|
+
Noindex: /test/
|
|
31
|
+
|
|
24
32
|
#
|
|
25
33
|
# Protection
|
|
26
34
|
#
|
|
@@ -30,8 +38,18 @@ Disallow: /?
|
|
|
30
38
|
Disallow: /startup?page=
|
|
31
39
|
Disallow: *page=
|
|
32
40
|
Disallow: *?page=
|
|
41
|
+
|
|
33
42
|
#
|
|
34
43
|
# App/Custom pages
|
|
35
44
|
#
|
|
45
|
+
# ...
|
|
46
|
+
|
|
47
|
+
#
|
|
48
|
+
# Wayback Machine (Internet Archive)
|
|
49
|
+
#
|
|
50
|
+
User-agent: ia_archiver
|
|
51
|
+
Disallow: /terms
|
|
52
|
+
Disallow: /privacy
|
|
53
|
+
Disallow: /cookies
|
|
36
54
|
|
|
37
55
|
Sitemap: {{ site.url }}/sitemap.xml
|
package/dist/index.js
CHANGED
|
@@ -11,6 +11,13 @@ class Manager {
|
|
|
11
11
|
// Initialize
|
|
12
12
|
async initialize() {
|
|
13
13
|
try {
|
|
14
|
+
// Log the page URL
|
|
15
|
+
/* @dev-only:start */
|
|
16
|
+
{
|
|
17
|
+
console.log(`Initializing page:`, window.location.href);
|
|
18
|
+
}
|
|
19
|
+
/* @dev-only:end */
|
|
20
|
+
|
|
14
21
|
// Initiate the web manager
|
|
15
22
|
this.webManager = new WebManager();
|
|
16
23
|
|