ultimate-jekyll-manager 0.0.118 → 0.0.119
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/CLAUDE.md +307 -21
- package/dist/assets/js/core/auth.js +5 -4
- package/dist/assets/js/core/cookieconsent.js +24 -17
- package/dist/assets/js/core/exit-popup.js +15 -12
- package/dist/assets/js/core/social-sharing.js +8 -4
- package/dist/assets/js/libs/auth/pages.js +14 -13
- package/dist/assets/js/libs/dev.js +192 -129
- package/dist/assets/js/pages/account/index.js +3 -2
- package/dist/assets/js/pages/account/sections/delete.js +83 -84
- package/dist/assets/js/pages/account/sections/security.js +4 -1
- package/dist/assets/js/pages/admin/notifications/new/index.js +17 -10
- package/dist/assets/js/pages/blog/index.js +7 -5
- package/dist/assets/js/pages/contact/index.js +6 -33
- package/dist/assets/js/pages/download/index.js +3 -2
- package/dist/assets/js/pages/pricing/index.js +5 -2
- package/dist/assets/themes/classy/css/components/_cards.scss +2 -2
- package/dist/defaults/_.env +6 -0
- package/dist/defaults/_.gitignore +7 -1
- package/dist/defaults/dist/_includes/core/body.html +5 -13
- package/dist/defaults/dist/_includes/core/foot.html +1 -0
- package/dist/defaults/dist/_includes/themes/classy/frontend/sections/nav.html +51 -36
- package/dist/defaults/dist/_layouts/blueprint/admin/notifications/new.html +13 -2
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/about.html +84 -42
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/account/index.html +26 -21
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/blog/index.html +72 -58
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/blog/post.html +46 -29
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/contact.html +36 -16
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/download.html +111 -73
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/index.html +111 -56
- package/dist/defaults/dist/_layouts/themes/classy/frontend/pages/pricing.html +127 -81
- package/dist/defaults/dist/pages/test/libraries/lazy-loading.html +1 -1
- package/dist/gulp/tasks/defaults.js +210 -1
- package/firebase-debug.log +378 -0
- package/package.json +2 -2
|
@@ -6,14 +6,16 @@ layout: themes/[ site.theme.id ]/frontend/core/base
|
|
|
6
6
|
# Hero Section
|
|
7
7
|
hero:
|
|
8
8
|
headline: "The {{ site.brand.name }}"
|
|
9
|
-
headline_accent: "
|
|
9
|
+
headline_accent: "blog"
|
|
10
10
|
subheadline: "Discover insights, tutorials, and news from our team"
|
|
11
11
|
|
|
12
12
|
# Newsletter CTA Section
|
|
13
13
|
newsletter_cta:
|
|
14
|
-
superheadline:
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
superheadline:
|
|
15
|
+
icon: "envelope"
|
|
16
|
+
text: "Newsletter"
|
|
17
|
+
headline: "Never miss a"
|
|
18
|
+
headline_accent: "post"
|
|
17
19
|
subheadline: "Get the latest insights delivered straight to your inbox. No spam, unsubscribe anytime."
|
|
18
20
|
button:
|
|
19
21
|
text: "Subscribe"
|
|
@@ -32,7 +34,7 @@ newsletter_cta:
|
|
|
32
34
|
{{ page.resolved.hero.headline }} <span class="text-gradient-rainbow">{{ page.resolved.hero.headline_accent }}</span>
|
|
33
35
|
</h1>
|
|
34
36
|
{% iftruthy page.resolved.hero.subheadline %}
|
|
35
|
-
<p class="fs-5 text-muted
|
|
37
|
+
<p class="fs-5 text-muted">
|
|
36
38
|
{{ page.resolved.hero.subheadline }}
|
|
37
39
|
</p>
|
|
38
40
|
{% endiftruthy %}
|
|
@@ -229,64 +231,76 @@ newsletter_cta:
|
|
|
229
231
|
|
|
230
232
|
<!-- Newsletter CTA -->
|
|
231
233
|
<section>
|
|
232
|
-
<div class="container"
|
|
233
|
-
<div class="rounded-4 p-5 position-relative overflow-hidden
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
234
|
+
<div class="container">
|
|
235
|
+
<div class="card border-0 bg-gradient bg-primary text-white rounded-4 p-4 p-md-5 text-center position-relative overflow-hidden" data-lazy="@class animation-slide-up">
|
|
236
|
+
<!-- Decorative icon - top right -->
|
|
237
|
+
<div class="position-absolute top-0 end-0 opacity-25" style="font-size:10rem;transform:rotate(15deg)translate(30%,-30%)">
|
|
238
|
+
{% uj_icon "pen-nib", "text-white" %}
|
|
239
|
+
</div>
|
|
240
|
+
|
|
241
|
+
<!-- Decorative icon - bottom left -->
|
|
242
|
+
<div class="position-absolute bottom-0 start-0 opacity-25" style="font-size:8rem;transform:rotate(-20deg)translate(-30%,30%)">
|
|
243
|
+
{% uj_icon "book-open", "text-white" %}
|
|
244
|
+
</div>
|
|
245
|
+
|
|
246
|
+
<div class="position-relative">
|
|
247
|
+
{% iftruthy page.resolved.newsletter_cta.superheadline.text %}
|
|
248
|
+
<span class="badge bg-white bg-opacity-25 text-light p-2 mb-3 fw-semibold small">
|
|
249
|
+
{% iftruthy page.resolved.newsletter_cta.superheadline.icon %}
|
|
250
|
+
{% uj_icon page.resolved.newsletter_cta.superheadline.icon, "me-1" %}
|
|
243
251
|
{% endiftruthy %}
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
252
|
+
{{ page.resolved.newsletter_cta.superheadline.text }}
|
|
253
|
+
</span>
|
|
254
|
+
{% endiftruthy %}
|
|
255
|
+
|
|
256
|
+
<h2 class="h3 fw-bold mb-3">
|
|
257
|
+
{{ page.resolved.newsletter_cta.headline }}
|
|
258
|
+
{% iftruthy page.resolved.newsletter_cta.headline_accent %}
|
|
259
|
+
{{ page.resolved.newsletter_cta.headline_accent }}
|
|
249
260
|
{% endiftruthy %}
|
|
250
|
-
</
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
<
|
|
254
|
-
|
|
255
|
-
<div class="col-md-8">
|
|
256
|
-
<input
|
|
257
|
-
type="email"
|
|
258
|
-
class="form-control form-control-lg"
|
|
259
|
-
placeholder="{{ page.resolved.newsletter_cta.form.placeholder }}"
|
|
260
|
-
name="email"
|
|
261
|
-
required
|
|
262
|
-
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$"
|
|
263
|
-
autocomplete="email"
|
|
264
|
-
>
|
|
265
|
-
<div class="invalid-feedback text-start">
|
|
266
|
-
Please enter a valid email address.
|
|
267
|
-
</div>
|
|
268
|
-
</div>
|
|
269
|
-
<div class="col-md-4">
|
|
270
|
-
<button type="submit" class="btn btn-adaptive btn-lg px-4 w-100">
|
|
271
|
-
{{ page.resolved.newsletter_cta.button.text }}
|
|
272
|
-
<span class="spinner-border spinner-border-sm ms-2 d-none" role="status">
|
|
273
|
-
<span class="visually-hidden">Loading...</span>
|
|
274
|
-
</span>
|
|
275
|
-
</button>
|
|
276
|
-
</div>
|
|
277
|
-
</div>
|
|
261
|
+
</h2>
|
|
262
|
+
|
|
263
|
+
{% iftruthy page.resolved.newsletter_cta.subheadline %}
|
|
264
|
+
<p class="lead mb-4">{{ page.resolved.newsletter_cta.subheadline }}</p>
|
|
265
|
+
{% endiftruthy %}
|
|
278
266
|
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
267
|
+
<!-- Newsletter Form -->
|
|
268
|
+
<form id="newsletter-form" class="newsletter-form">
|
|
269
|
+
<div class="row g-3 justify-content-center">
|
|
270
|
+
<div class="col-md-7">
|
|
271
|
+
<input
|
|
272
|
+
type="email"
|
|
273
|
+
class="form-control form-control-lg"
|
|
274
|
+
placeholder="{{ page.resolved.newsletter_cta.form.placeholder }}"
|
|
275
|
+
name="email"
|
|
276
|
+
required
|
|
277
|
+
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$"
|
|
278
|
+
autocomplete="email"
|
|
279
|
+
>
|
|
280
|
+
<div class="invalid-feedback text-start">
|
|
281
|
+
Please enter a valid email address.
|
|
282
|
+
</div>
|
|
283
283
|
</div>
|
|
284
|
-
<div class="
|
|
285
|
-
|
|
286
|
-
|
|
284
|
+
<div class="col-md-auto">
|
|
285
|
+
<button type="submit" class="btn btn-light btn-lg px-4">
|
|
286
|
+
{{ page.resolved.newsletter_cta.button.text }}
|
|
287
|
+
<span class="spinner-border spinner-border-sm ms-2 d-none" role="status">
|
|
288
|
+
<span class="visually-hidden">Loading...</span>
|
|
289
|
+
</span>
|
|
290
|
+
</button>
|
|
287
291
|
</div>
|
|
288
|
-
</
|
|
289
|
-
|
|
292
|
+
</div>
|
|
293
|
+
|
|
294
|
+
<!-- Success/Error Messages -->
|
|
295
|
+
<div class="newsletter-success-alert alert alert-success mt-3 d-none" role="alert">
|
|
296
|
+
{% uj_icon "check-circle", "me-2" %}
|
|
297
|
+
{{ page.resolved.newsletter_cta.form.success_message }}
|
|
298
|
+
</div>
|
|
299
|
+
<div class="newsletter-error-alert alert alert-danger mt-3 d-none" role="alert">
|
|
300
|
+
{% uj_icon "exclamation-circle", "me-2" %}
|
|
301
|
+
<span class="error-message">{{ page.resolved.newsletter_cta.form.error_message }}</span>
|
|
302
|
+
</div>
|
|
303
|
+
</form>
|
|
290
304
|
</div>
|
|
291
305
|
</div>
|
|
292
306
|
</div>
|
|
@@ -20,13 +20,15 @@ author_section:
|
|
|
20
20
|
|
|
21
21
|
related_posts:
|
|
22
22
|
headline: "Related"
|
|
23
|
-
headline_accent: "
|
|
23
|
+
headline_accent: "posts"
|
|
24
24
|
limit: 3
|
|
25
25
|
|
|
26
26
|
newsletter:
|
|
27
|
-
superheadline:
|
|
27
|
+
superheadline:
|
|
28
|
+
icon: "envelope"
|
|
29
|
+
text: "Newsletter"
|
|
28
30
|
headline: "Stay in the"
|
|
29
|
-
headline_accent: "
|
|
31
|
+
headline_accent: "loop"
|
|
30
32
|
subheadline: "Join our newsletter and get resources, curated content, and inspiration delivered straight to your inbox."
|
|
31
33
|
button:
|
|
32
34
|
text: "Submit"
|
|
@@ -39,7 +41,7 @@ newsletter:
|
|
|
39
41
|
<div class="container">
|
|
40
42
|
<div class="row justify-content-center mb-3">
|
|
41
43
|
<div class="col-xl-8 col-lg-8 col-md-12 col-12">
|
|
42
|
-
<header class="text-center mb-
|
|
44
|
+
<header class="text-center mb-5" data-lazy="@class animation-slide-up">
|
|
43
45
|
<h1 class="h1 fw-bold mb-0">{{ page.post.title }}</h1>
|
|
44
46
|
</header>
|
|
45
47
|
|
|
@@ -257,32 +259,47 @@ newsletter:
|
|
|
257
259
|
<section>
|
|
258
260
|
<div class="container">
|
|
259
261
|
<div class="row justify-content-center">
|
|
260
|
-
<div class="col-xl-8 col-lg-8 col-md-12 col-12"
|
|
261
|
-
<div class="card">
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
{
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
262
|
+
<div class="col-xl-8 col-lg-8 col-md-12 col-12">
|
|
263
|
+
<div class="card border-0 bg-gradient bg-primary text-white rounded-4 p-4 p-md-5 text-center position-relative overflow-hidden" data-lazy="@class animation-slide-up">
|
|
264
|
+
<!-- Decorative icon - top right -->
|
|
265
|
+
<div class="position-absolute top-0 end-0 opacity-25" style="font-size:10rem;transform:rotate(15deg)translate(30%,-30%)">
|
|
266
|
+
{% uj_icon "comments", "text-white" %}
|
|
267
|
+
</div>
|
|
268
|
+
|
|
269
|
+
<!-- Decorative icon - bottom left -->
|
|
270
|
+
<div class="position-absolute bottom-0 start-0 opacity-25" style="font-size:8rem;transform:rotate(-20deg)translate(-30%,30%)">
|
|
271
|
+
{% uj_icon "rss", "text-white" %}
|
|
272
|
+
</div>
|
|
273
|
+
|
|
274
|
+
<div class="position-relative">
|
|
275
|
+
{% iftruthy page.resolved.newsletter.superheadline.text %}
|
|
276
|
+
<span class="badge bg-white bg-opacity-25 text-light p-2 mb-3 fw-semibold small">
|
|
277
|
+
{% iftruthy page.resolved.newsletter.superheadline.icon %}
|
|
278
|
+
{% uj_icon page.resolved.newsletter.superheadline.icon, "me-1" %}
|
|
279
|
+
{% endiftruthy %}
|
|
280
|
+
{{ page.resolved.newsletter.superheadline.text }}
|
|
281
|
+
</span>
|
|
282
|
+
{% endiftruthy %}
|
|
283
|
+
|
|
284
|
+
{% iftruthy page.resolved.newsletter.headline %}
|
|
285
|
+
<h2 class="h3 fw-bold mb-3">
|
|
286
|
+
{{ page.resolved.newsletter.headline }}
|
|
287
|
+
{% iftruthy page.resolved.newsletter.headline_accent %}
|
|
288
|
+
{{ page.resolved.newsletter.headline_accent }}
|
|
289
|
+
{% endiftruthy %}
|
|
290
|
+
</h2>
|
|
291
|
+
{% endiftruthy %}
|
|
292
|
+
|
|
293
|
+
{% iftruthy page.resolved.newsletter.subheadline %}
|
|
294
|
+
<p class="lead mb-4">{{ page.resolved.newsletter.subheadline }}</p>
|
|
295
|
+
{% endiftruthy %}
|
|
296
|
+
|
|
297
|
+
<form class="row g-3 justify-content-center needs-validation" action="{{ site.url }}/email-subscription">
|
|
298
|
+
<div class="col-md-7">
|
|
299
|
+
<input type="email" name="email" class="form-control form-control-lg" placeholder="{% iftruthy page.resolved.newsletter.form.placeholder %}{{ page.resolved.newsletter.form.placeholder }}{% endiftruthy %}" autocomplete="email" required>
|
|
283
300
|
</div>
|
|
284
|
-
<div class="col-auto">
|
|
285
|
-
<button type="submit" class="btn btn-
|
|
301
|
+
<div class="col-md-auto">
|
|
302
|
+
<button type="submit" class="btn btn-light btn-lg px-4">{% iftruthy page.resolved.newsletter.button.text %}{{ page.resolved.newsletter.button.text }}{% endiftruthy %}</button>
|
|
286
303
|
</div>
|
|
287
304
|
</form>
|
|
288
305
|
</div>
|
|
@@ -6,17 +6,17 @@ layout: themes/[ site.theme.id ]/frontend/core/base
|
|
|
6
6
|
# Hero Section
|
|
7
7
|
hero:
|
|
8
8
|
headline: "Get in"
|
|
9
|
-
headline_accent: "
|
|
9
|
+
headline_accent: "touch"
|
|
10
10
|
subheadline: "We're here to help! Reach out to our friendly support team and we'll get back to you as soon as possible."
|
|
11
11
|
|
|
12
12
|
# Contact Methods Section
|
|
13
13
|
contact_methods:
|
|
14
|
-
- title: "Email
|
|
14
|
+
- title: "Email support"
|
|
15
15
|
description: "Get help within 24 hours"
|
|
16
16
|
icon: "envelope"
|
|
17
17
|
value: "Email Us"
|
|
18
18
|
link: "#form"
|
|
19
|
-
- title: "Live
|
|
19
|
+
- title: "Live chat"
|
|
20
20
|
description: "Chat with our team now 24/7"
|
|
21
21
|
icon: "comments"
|
|
22
22
|
value: "Chat Now"
|
|
@@ -24,9 +24,11 @@ contact_methods:
|
|
|
24
24
|
|
|
25
25
|
# Contact Form Section
|
|
26
26
|
contact_form:
|
|
27
|
-
superheadline:
|
|
27
|
+
superheadline:
|
|
28
|
+
icon: "envelope"
|
|
29
|
+
text: "Email"
|
|
28
30
|
headline: "Send us a"
|
|
29
|
-
headline_accent: "
|
|
31
|
+
headline_accent: "message"
|
|
30
32
|
subheadline: "Fill out the form below and we'll get back to you within 24 hours."
|
|
31
33
|
|
|
32
34
|
# Stats Section
|
|
@@ -51,9 +53,11 @@ stats:
|
|
|
51
53
|
|
|
52
54
|
# Testimonials Section
|
|
53
55
|
testimonials:
|
|
54
|
-
superheadline:
|
|
55
|
-
|
|
56
|
-
|
|
56
|
+
superheadline:
|
|
57
|
+
icon: "megaphone"
|
|
58
|
+
text: "Testimonials"
|
|
59
|
+
headline: "What our customers"
|
|
60
|
+
headline_accent: "say"
|
|
57
61
|
subheadline: "Hear from people who've experienced our support firsthand"
|
|
58
62
|
items:
|
|
59
63
|
- quote: "The support team responded within minutes and solved my issue perfectly!"
|
|
@@ -74,9 +78,12 @@ testimonials:
|
|
|
74
78
|
|
|
75
79
|
# FAQs Section
|
|
76
80
|
faqs:
|
|
77
|
-
superheadline:
|
|
78
|
-
|
|
79
|
-
|
|
81
|
+
superheadline:
|
|
82
|
+
icon: "messages-question"
|
|
83
|
+
text: "FAQs"
|
|
84
|
+
headline: "Frequently asked"
|
|
85
|
+
headline_accent: "questions"
|
|
86
|
+
subheadline: "Everything you need to know about our support experience."
|
|
80
87
|
items:
|
|
81
88
|
- question: "How quickly do you respond to support requests?"
|
|
82
89
|
answer: "We aim to respond to all support requests within 24 hours during business days. For urgent issues, our live chat is available 24/7."
|
|
@@ -95,7 +102,7 @@ faqs:
|
|
|
95
102
|
{{ page.resolved.hero.headline }} <span class="text-gradient-rainbow">{{ page.resolved.hero.headline_accent }}</span>
|
|
96
103
|
</h1>
|
|
97
104
|
{% iftruthy page.resolved.hero.subheadline %}
|
|
98
|
-
<p class="fs-5 text-muted
|
|
105
|
+
<p class="fs-5 text-muted">
|
|
99
106
|
{{ page.resolved.hero.subheadline }}
|
|
100
107
|
</p>
|
|
101
108
|
{% endiftruthy %}
|
|
@@ -152,8 +159,13 @@ faqs:
|
|
|
152
159
|
<div class="card border-0 shadow-lg" data-lazy="@class animation-slide-up">
|
|
153
160
|
<div class="card-body p-5">
|
|
154
161
|
<div class="text-center mb-4">
|
|
155
|
-
{% iftruthy page.resolved.contact_form.superheadline %}
|
|
156
|
-
<span class="badge bg-body-tertiary border-gradient-rainbow border-1 text-body p-2 mb-1 fw-semibold small">
|
|
162
|
+
{% iftruthy page.resolved.contact_form.superheadline.text %}
|
|
163
|
+
<span class="badge bg-body-tertiary border-gradient-rainbow border-1 text-body p-2 mb-1 fw-semibold small">
|
|
164
|
+
{% iftruthy page.resolved.contact_form.superheadline.icon %}
|
|
165
|
+
{% uj_icon page.resolved.contact_form.superheadline.icon, "me-1" %}
|
|
166
|
+
{% endiftruthy %}
|
|
167
|
+
{{ page.resolved.contact_form.superheadline.text }}
|
|
168
|
+
</span>
|
|
157
169
|
{% endiftruthy %}
|
|
158
170
|
<h2 class="h3 mb-2">
|
|
159
171
|
{{ page.resolved.contact_form.headline }}
|
|
@@ -309,8 +321,13 @@ faqs:
|
|
|
309
321
|
<div class="row justify-content-center">
|
|
310
322
|
<div class="col-lg-8">
|
|
311
323
|
<div class="text-center mb-5" data-lazy="@class animation-slide-up">
|
|
312
|
-
{% iftruthy page.resolved.faqs.superheadline %}
|
|
313
|
-
<span class="badge bg-body-tertiary border-gradient-rainbow border-1 text-body p-2 mb-1 fw-semibold small">
|
|
324
|
+
{% iftruthy page.resolved.faqs.superheadline.text %}
|
|
325
|
+
<span class="badge bg-body-tertiary border-gradient-rainbow border-1 text-body p-2 mb-1 fw-semibold small">
|
|
326
|
+
{% iftruthy page.resolved.faqs.superheadline.icon %}
|
|
327
|
+
{% uj_icon page.resolved.faqs.superheadline.icon, "me-1" %}
|
|
328
|
+
{% endiftruthy %}
|
|
329
|
+
{{ page.resolved.faqs.superheadline.text }}
|
|
330
|
+
</span>
|
|
314
331
|
{% endiftruthy %}
|
|
315
332
|
<h2 class="display-5 fw-bold mb-2">
|
|
316
333
|
{{ page.resolved.faqs.headline }}
|
|
@@ -318,6 +335,9 @@ faqs:
|
|
|
318
335
|
<span class="text-accent">{{ page.resolved.faqs.headline_accent }}</span>
|
|
319
336
|
{% endiftruthy %}
|
|
320
337
|
</h2>
|
|
338
|
+
{% iftruthy page.resolved.faqs.subheadline %}
|
|
339
|
+
<p class="fs-5 text-muted">{{ page.resolved.faqs.subheadline }}</p>
|
|
340
|
+
{% endiftruthy %}
|
|
321
341
|
</div>
|
|
322
342
|
|
|
323
343
|
{% if page.resolved.faqs.items %}
|