ultimate-jekyll-manager 0.0.204 → 0.0.205
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 +23 -1
- package/package.json +1 -1
package/CLAUDE.md
CHANGED
|
@@ -6,6 +6,8 @@ Ultimate Jekyll Manager is a template framework that consuming projects install
|
|
|
6
6
|
|
|
7
7
|
**Important:** This is NOT a standalone project. You cannot run `npm start` or `npm run build` directly in this repository.
|
|
8
8
|
|
|
9
|
+
**DO NOT run `npm start`, `npm run build`, or any dev server commands.** The user already has a development server running in a consuming project. Running these commands here would either fail or create duplicate servers unnecessarily.
|
|
10
|
+
|
|
9
11
|
## Project Structure
|
|
10
12
|
|
|
11
13
|
### Directory Organization
|
|
@@ -22,7 +24,7 @@ Ultimate Jekyll Manager is a template framework that consuming projects install
|
|
|
22
24
|
|
|
23
25
|
## Local Development
|
|
24
26
|
|
|
25
|
-
The local development server URL is stored in `.temp/_config_browsersync.yml` in the consuming project's root directory. Read this file to determine the correct URL for browsing and testing.
|
|
27
|
+
The local development server URL is stored in `.temp/_config_browsersync.yml` in the consuming project's root directory. Read this file to determine the correct URL for browsing and testing. By default, use "https://192.168.86.69:4000".
|
|
26
28
|
|
|
27
29
|
## Asset Organization
|
|
28
30
|
|
|
@@ -462,6 +464,26 @@ Ultimate Jekyll supports both light and dark modes. Use adaptive classes instead
|
|
|
462
464
|
|
|
463
465
|
These classes automatically adapt to the current theme mode.
|
|
464
466
|
|
|
467
|
+
### Cards Inside Colored Sections
|
|
468
|
+
|
|
469
|
+
When placing cards inside sections with `bg-body-secondary` or `bg-body-tertiary`, cards will blend in because they share the same background color by default.
|
|
470
|
+
|
|
471
|
+
**Solution:** Add `bg-body` to cards to create visual contrast:
|
|
472
|
+
|
|
473
|
+
```html
|
|
474
|
+
<!-- ❌ WRONG - Card blends with section background -->
|
|
475
|
+
<section class="bg-body-secondary">
|
|
476
|
+
<div class="card">...</div>
|
|
477
|
+
</section>
|
|
478
|
+
|
|
479
|
+
<!-- ✅ CORRECT - Card stands out with contrasting background -->
|
|
480
|
+
<section class="bg-body-secondary">
|
|
481
|
+
<div class="card bg-body">...</div>
|
|
482
|
+
</section>
|
|
483
|
+
```
|
|
484
|
+
|
|
485
|
+
**Rule:** When a section uses `bg-body-secondary` or `bg-body-tertiary`, always add `bg-body` to child cards to ensure proper visual hierarchy.
|
|
486
|
+
|
|
465
487
|
## Page Loading Protection System
|
|
466
488
|
|
|
467
489
|
Ultimate Jekyll prevents race conditions by disabling buttons during JavaScript initialization.
|