ultimate-jekyll-manager 0.0.179 → 0.0.181
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/TODO-BACKEND.md +13 -0
- package/TODO-CHAT1.md +41 -0
- package/TODO-tracking2.md +103 -0
- package/dist/defaults/src/_config.yml +17 -17
- package/dist/gulp/tasks/sass.js +10 -1
- package/package.json +1 -1
package/TODO-BACKEND.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
BACKEND TODO
|
|
2
|
+
make the mobile menu toggle appear in place ont he logo/brand (the one on the topbar), not down in the bottom right corner
|
|
3
|
+
|
|
4
|
+
does it hav eto be aside? or can it be nav? id prefer if it was nav
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
the breadcrumbs at the top are not needed. pelase move them inside the MINIMAL layout. on that note, please design the minimal layout page. it should look liek the screenshot attached with the page.meta.title, then under that is the breadcrumbs, then under that is the page content. on the right side, there is a button
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
ok our dashboard needs some work. just look at the screenshot.
|
|
11
|
+
- the DASHBAORD text is way too huge. the icon next to it is way too small.
|
|
12
|
+
- also, that whole section needs a HR below it or a border or something to separate it from the content below. also, we need to make
|
|
13
|
+
- also, the LOGO section in top left should match the bg color of the sidebar.
|
package/TODO-CHAT1.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
where could we put a small section about how to use the defualt css classes? some come with bootstrap and some come from our core, and some come from the theme. when building websites, we should be using the premde classes not creating copies of custom classes that do the same thing
|
|
2
|
+
|
|
3
|
+
Looking at the CLAUDE.md structure, I think the best place for a CSS classes section would be after the "CSS Guidelines" section (which currently only covers Theme-Adaptive Classes). We could expand that section or add a new subsection. Let me check what's currently in the CSS Guidelines section and the surrounding context:
|
|
4
|
+
Grep "## CSS Guidelines" (in /Users/ian/Developer/Repositories/ITW-Creative-Works/ultimate-jekyll-manager/CLAUDE.md)
|
|
5
|
+
51 lines of output
|
|
6
|
+
The CSS Guidelines section is currently small (lines 423-443), focusing only on theme-adaptive classes. I'd recommend expanding this section with a new subsection about class hierarchy and usage. Here's where I'd suggest placing it and what it could contain: Suggested location: After "Theme-Adaptive Classes" (line 443), before "Page Loading Protection System" (line 445) Suggested content:
|
|
7
|
+
### CSS Class Hierarchy
|
|
8
|
+
|
|
9
|
+
When styling elements, always prefer existing classes over creating custom ones. Classes come from three sources (in order of precedence):
|
|
10
|
+
|
|
11
|
+
**1. Bootstrap Classes (Foundation)**
|
|
12
|
+
Use Bootstrap's utility classes for common patterns:
|
|
13
|
+
- Spacing: `m-*`, `p-*`, `mt-3`, `px-4`, `gap-2`
|
|
14
|
+
- Flexbox: `d-flex`, `justify-content-center`, `align-items-center`
|
|
15
|
+
- Grid: `row`, `col-*`, `container`, `container-fluid`
|
|
16
|
+
- Text: `text-center`, `fw-bold`, `fs-5`, `text-muted`
|
|
17
|
+
- Display: `d-none`, `d-md-block`, `visually-hidden`
|
|
18
|
+
|
|
19
|
+
**Documentation:** https://getbootstrap.com/docs/5.3/utilities/
|
|
20
|
+
|
|
21
|
+
**2. UJ Core Classes (Global)**
|
|
22
|
+
Located in `src/assets/css/global/` and `src/assets/css/core/`:
|
|
23
|
+
- Theme-adaptive: `bg-body`, `btn-adaptive`, `text-body`
|
|
24
|
+
- Utilities: (list common ones here)
|
|
25
|
+
|
|
26
|
+
**3. Theme Classes (Theme-Specific)**
|
|
27
|
+
Located in `src/assets/themes/[theme-id]/`:
|
|
28
|
+
- Theme-specific components and overrides
|
|
29
|
+
|
|
30
|
+
### Best Practices
|
|
31
|
+
|
|
32
|
+
**DO:**
|
|
33
|
+
- Search existing classes before creating new ones
|
|
34
|
+
- Use Bootstrap utilities for spacing, layout, typography
|
|
35
|
+
- Use UJ adaptive classes for theme compatibility
|
|
36
|
+
|
|
37
|
+
**DON'T:**
|
|
38
|
+
- Create `.my-centered-text` when `text-center` exists
|
|
39
|
+
- Create `.my-margin-top` when `mt-3` exists
|
|
40
|
+
- Duplicate functionality that Bootstrap or UJ already provides
|
|
41
|
+
Would you like me to add this section to the CLAUDE.md file? I can also explore the actual CSS files to document the specific UJ core utility classes that are available.
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
TODO
|
|
2
|
+
- google tag optimization
|
|
3
|
+
https://support.google.com/analytics/thread/352854513/gtag-click-tracking-causes-reflow-due-to-reading-a-innertext-a-textcontent?hl=en
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
- SW update error (devtools check update on reload, then reload, notice it goes forever and then logs an error
|
|
7
|
+
// Private: Set up update handlers
|
|
8
|
+
_setupUpdateHandlers(registration) {
|
|
9
|
+
// Listen for updates
|
|
10
|
+
registration.addEventListener('updatefound', () => {
|
|
11
|
+
const newWorker = registration.installing;
|
|
12
|
+
|
|
13
|
+
if (!newWorker) return;
|
|
14
|
+
|
|
15
|
+
newWorker.addEventListener('statechange', () => {
|
|
16
|
+
if (newWorker.state === 'installed' && navigator.serviceWorker.controller) {
|
|
17
|
+
// New service worker available
|
|
18
|
+
this._notifyUpdateCallbacks({
|
|
19
|
+
type: 'update-available',
|
|
20
|
+
worker: newWorker
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
// Automatically skip waiting and activate new worker
|
|
24
|
+
if (this.manager.config.serviceWorker?.autoUpdate !== false) {
|
|
25
|
+
this.skipWaiting();
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
- tiktok error (CHECK UJ LEGACY CODE FOR TIKTOK EXAMPLES)
|
|
32
|
+
Click
|
|
33
|
+
console.js:36 📊 gtag: {command: 'event', event: 'cookie_consent_auto_accepted', params: {…}, fullArgs: Array(3)}
|
|
34
|
+
console.js:36 📘 fbq: {command: 'trackCustom', event: 'CookieConsentAutoAccepted', params: {…}, fullArgs: Array(3)}
|
|
35
|
+
console.js:36 [TikTok Pixel] - Missing 'content_id' paramter
|
|
36
|
+
Issue: The 'content_id' parameter isn't being received. This is required for Video Shopping Ads (VSA).
|
|
37
|
+
Suggestion: Include the 'content_id' parameter in your source code. This is required for Video Shopping Ads (VSA). See https://ads.tiktok.com/help/article/standard-events-parameters?redirected=2 for more information.
|
|
38
|
+
eval @ console.js:36
|
|
39
|
+
iC @ main.MTE0NjY3MDc0MQ.js:1
|
|
40
|
+
r.warn @ main.MTE0NjY3MDc0MQ.js:1
|
|
41
|
+
r.handleEventPayloadValidate @ main.MTE0NjY3MDc0MQ.js:1
|
|
42
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
43
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
44
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
45
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
46
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
47
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
48
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
49
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
50
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
51
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
52
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
53
|
+
u @ main.MTE0NjY3MDc0MQ.js:1
|
|
54
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
55
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
56
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
57
|
+
e.track @ main.MTE0NjY3MDc0MQ.js:1
|
|
58
|
+
i.track @ main.MTE0NjY3MDc0MQ.js:1
|
|
59
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
60
|
+
trackCookieAutoAccepted @ cookieconsent.js:354
|
|
61
|
+
eval @ cookieconsent.js:126
|
|
62
|
+
sentryWrapped @ helpers.js:93
|
|
63
|
+
setTimeout
|
|
64
|
+
eval @ browserapierrors.js:95
|
|
65
|
+
autoAcceptHandler @ cookieconsent.js:124
|
|
66
|
+
sentryWrapped @ helpers.js:93Understand this warning
|
|
67
|
+
console.js:36 [TikTok Pixel] - Invalid content type
|
|
68
|
+
Issue: The content type for one or more of your events is not valid. Content type must be either "product", "product_group", "destination", "hotel", "flight" or "vehicle".
|
|
69
|
+
Suggestion: Go to your source code and update the content type. See https://ads.tiktok.com/help/article/standard-events-parameters?redirected=2 for more information.
|
|
70
|
+
eval @ console.js:36
|
|
71
|
+
iC @ main.MTE0NjY3MDc0MQ.js:1
|
|
72
|
+
r.warn @ main.MTE0NjY3MDc0MQ.js:1
|
|
73
|
+
r.handleEventPayloadValidate @ main.MTE0NjY3MDc0MQ.js:1
|
|
74
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
75
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
76
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
77
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
78
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
79
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
80
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
81
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
82
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
83
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
84
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
85
|
+
u @ main.MTE0NjY3MDc0MQ.js:1
|
|
86
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
87
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
88
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
89
|
+
e.track @ main.MTE0NjY3MDc0MQ.js:1
|
|
90
|
+
i.track @ main.MTE0NjY3MDc0MQ.js:1
|
|
91
|
+
(anonymous) @ main.MTE0NjY3MDc0MQ.js:1
|
|
92
|
+
trackCookieAutoAccepted @ cookieconsent.js:354
|
|
93
|
+
eval @ cookieconsent.js:126
|
|
94
|
+
sentryWrapped @ helpers.js:93
|
|
95
|
+
setTimeout
|
|
96
|
+
eval @ browserapierrors.js:95
|
|
97
|
+
autoAcceptHandler @ cookieconsent.js:124
|
|
98
|
+
sentryWrapped @ helpers.js:93Understand this warning
|
|
99
|
+
console.js:36 📊 gtag: {command: 'event', event: 'cookie_consent_accepted', params: {…}, fullArgs: Array(3)}
|
|
100
|
+
console.js:36 📘 fbq: {command: 'trackCustom', event: 'CookieConsentAccepted', params: undefined, fullArgs: Array(2)}
|
|
101
|
+
console.js:36 [TikTok Pixel] - Invalid content type
|
|
102
|
+
Issue: The content type for one or more of your events is not valid. Content type must be either "product", "product_group", "destination", "hotel", "flight" or "vehicle".
|
|
103
|
+
Suggestion: Go to your source code and update the content type. See https://ads.tiktok.com/help/article/standard-events-parameters?redirected=2 for more information.
|
|
@@ -124,7 +124,7 @@ web_manager:
|
|
|
124
124
|
socialSharing:
|
|
125
125
|
enabled: false
|
|
126
126
|
config:
|
|
127
|
-
defaultPlatforms: ["facebook", "twitter", "linkedin", "pinterest", "reddit", "email", "copy"]
|
|
127
|
+
defaultPlatforms: [ "facebook", "twitter", "linkedin", "pinterest", "reddit", "email", "copy" ]
|
|
128
128
|
buttonClass: ""
|
|
129
129
|
openInNewWindow: true
|
|
130
130
|
pushNotifications:
|
|
@@ -229,35 +229,35 @@ icons:
|
|
|
229
229
|
style: "solid"
|
|
230
230
|
|
|
231
231
|
# Blog & Pagination
|
|
232
|
-
permalink: /blog/:title
|
|
232
|
+
permalink: "/blog/:title"
|
|
233
233
|
pagination:
|
|
234
234
|
enabled: true
|
|
235
235
|
per_page: 6
|
|
236
236
|
offset: 0
|
|
237
237
|
limit: 0
|
|
238
|
-
permalink: /page/:num.html
|
|
239
|
-
title: :title - page :num
|
|
240
|
-
sort_field: date
|
|
238
|
+
permalink: "/page/:num.html"
|
|
239
|
+
title: ":title - page :num"
|
|
240
|
+
sort_field: "date"
|
|
241
241
|
sort_reverse: true
|
|
242
242
|
|
|
243
243
|
# Jekyll collections
|
|
244
244
|
collections:
|
|
245
245
|
team:
|
|
246
|
-
title: Team Members
|
|
246
|
+
title: "Team Members"
|
|
247
247
|
output: true
|
|
248
248
|
updates:
|
|
249
|
-
title: Updates
|
|
249
|
+
title: "Updates"
|
|
250
250
|
output: true
|
|
251
251
|
|
|
252
252
|
# Jekyll defaults
|
|
253
253
|
defaults:
|
|
254
|
-
- scope:
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
- scope:
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
254
|
+
- scope:
|
|
255
|
+
path: ""
|
|
256
|
+
type: "team"
|
|
257
|
+
values:
|
|
258
|
+
permalink: "/team/:title"
|
|
259
|
+
- scope:
|
|
260
|
+
path: ""
|
|
261
|
+
type: "updates"
|
|
262
|
+
values:
|
|
263
|
+
permalink: "/updates/:title"
|
package/dist/gulp/tasks/sass.js
CHANGED
|
@@ -255,7 +255,16 @@ function sass(complete) {
|
|
|
255
255
|
// Social
|
|
256
256
|
/^social-share-/,
|
|
257
257
|
],
|
|
258
|
-
deep: [
|
|
258
|
+
deep: [
|
|
259
|
+
// Preserve input state pseudo-selectors (checkbox, radio, etc.)
|
|
260
|
+
/:checked/,
|
|
261
|
+
/:disabled/,
|
|
262
|
+
/:enabled/,
|
|
263
|
+
/:focus/,
|
|
264
|
+
/:hover/,
|
|
265
|
+
/:valid/,
|
|
266
|
+
/:invalid/,
|
|
267
|
+
],
|
|
259
268
|
greedy: [],
|
|
260
269
|
// Preserve keyframe animations
|
|
261
270
|
keyframes: [
|