ultimate-jekyll-manager 0.0.207 → 0.0.209
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
CHANGED
|
@@ -444,6 +444,18 @@ $el.innerHTML = `${iconHTML} Text`;
|
|
|
444
444
|
|
|
445
445
|
## CSS Guidelines
|
|
446
446
|
|
|
447
|
+
### Section Padding in Custom Pages
|
|
448
|
+
|
|
449
|
+
**DO NOT add padding classes to sections in custom frontend pages.**
|
|
450
|
+
|
|
451
|
+
UJ handles section padding automatically via the theme's layout system. When creating or editing custom frontend pages:
|
|
452
|
+
|
|
453
|
+
- ❌ DO NOT use `py-5`, `py-4`, `pt-5`, `pb-5`, `p-5`, etc. on `<section>` elements
|
|
454
|
+
- ❌ DO NOT add vertical padding to sections manually
|
|
455
|
+
- ✅ Let the UJ theme handle section spacing automatically
|
|
456
|
+
|
|
457
|
+
**The ONLY exception:** Add padding if the user EXPLICITLY requests it for a specific section.
|
|
458
|
+
|
|
447
459
|
### Theme-Adaptive Classes
|
|
448
460
|
|
|
449
461
|
**DO NOT USE:** `bg-light`, `bg-dark`, `text-light`, `text-dark`
|
package/dist/commands/setup.js
CHANGED
|
@@ -318,7 +318,7 @@ async function updateBundle() {
|
|
|
318
318
|
|
|
319
319
|
// Log
|
|
320
320
|
logger.log('Running bundle update...');
|
|
321
|
-
await execute('bundle update', { log: true })
|
|
321
|
+
await execute('bundle update --all', { log: true })
|
|
322
322
|
}
|
|
323
323
|
|
|
324
324
|
function install(package, ver, location) {
|
package/dist/defaults/Gemfile
CHANGED
|
@@ -22,7 +22,7 @@ group :jekyll_plugins do
|
|
|
22
22
|
end
|
|
23
23
|
|
|
24
24
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
25
|
-
gem "tzinfo-data", platforms: [:
|
|
25
|
+
gem "tzinfo-data", platforms: [:windows, :jruby]
|
|
26
26
|
|
|
27
27
|
# Performance-booster for watching directories on Windows
|
|
28
28
|
gem "wdm", "~> 0.1.0" if Gem.win_platform?
|
|
@@ -8,13 +8,19 @@
|
|
|
8
8
|
|
|
9
9
|
<a class="navbar-brand d-inline-flex align-items-center py-0" href="{{ logo_href }}">
|
|
10
10
|
{% iftruthy logo_src %}
|
|
11
|
-
|
|
12
|
-
<img src="{{ logo_src }}" alt="{{ logo_text }} Logo"/>
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
11
|
+
{% if data.logo.type == 'wordmark' %}
|
|
12
|
+
<img src="{{ logo_src }}" alt="{{ logo_text }} Logo" class="{{ logo_class }}" style="height: 2rem; width: auto;"/>
|
|
13
|
+
{% else %}
|
|
14
|
+
<div class="avatar avatar-md me-2 {{ logo_class }}">
|
|
15
|
+
<img src="{{ logo_src }}" alt="{{ logo_text }} Logo"/>
|
|
16
|
+
</div>
|
|
17
|
+
{% endif %}
|
|
17
18
|
{% endiftruthy %}
|
|
19
|
+
{% if data.logo.type != 'wordmark' %}
|
|
20
|
+
{% iftruthy logo_text %}
|
|
21
|
+
<span class="text-body">{{ logo_text }}</span>
|
|
22
|
+
{% endiftruthy %}
|
|
23
|
+
{% endif %}
|
|
18
24
|
</a>
|
|
19
25
|
|
|
20
26
|
<!-- Mobile controls wrapper -->
|
|
@@ -5,7 +5,7 @@ layout: themes/[ site.theme.id ]/frontend/core/base
|
|
|
5
5
|
### PAGE CONFIG ###
|
|
6
6
|
# Hero Section
|
|
7
7
|
hero:
|
|
8
|
-
headline: "The right plans,
|
|
8
|
+
headline: "The right plans,"
|
|
9
9
|
headline_accent: "for the right price"
|
|
10
10
|
subheadline: "Simple and affordable pricing. No hidden fees, no surprises."
|
|
11
11
|
|
|
@@ -208,12 +208,12 @@ faqs:
|
|
|
208
208
|
# answer: "If you run out of quotas mid-month, you can upgrade to a higher plan or wait until your quotas reset at the beginning of your next billing cycle."
|
|
209
209
|
# - question: "Will my exports, generation & iStock credits roll-over into the next month or billing cycle?"
|
|
210
210
|
# answer: "No, unused credits and quotas do not roll over to the next billing cycle. Your quotas reset at the beginning of each new billing period."
|
|
211
|
-
- question: "Can I cancel at
|
|
212
|
-
answer: "Yes
|
|
211
|
+
- question: "Can I cancel at any time?"
|
|
212
|
+
answer: "Yes, you can cancel anytime, no questions asked. However, we would highly appreciate it if you could give us some feedback so we can improve."
|
|
213
213
|
- question: "Is there a free trial?"
|
|
214
|
-
answer: "Yes
|
|
214
|
+
answer: "Yes, there is a 14-day free trial of the paid plans. You can cancel your subscription at any time during the trial period for a full refund."
|
|
215
215
|
- question: "What is your refund policy?"
|
|
216
|
-
answer: "We offer a 14
|
|
216
|
+
answer: "We offer a 14-day free trial of the premium plans. You can cancel any time during your trial for a full refund. After the trial period, you can cancel and you may receive a prorated refund for the remaining time on your subscription."
|
|
217
217
|
---
|
|
218
218
|
|
|
219
219
|
<!-- Promo Banner -->
|