uniweb 0.6.21 → 0.6.22
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/package.json +4 -4
- package/partials/agents-md.hbs +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uniweb",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.22",
|
|
4
4
|
"description": "Create structured Vite + React sites with content/code separation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"js-yaml": "^4.1.0",
|
|
41
41
|
"prompts": "^2.4.2",
|
|
42
42
|
"tar": "^7.0.0",
|
|
43
|
-
"@uniweb/
|
|
43
|
+
"@uniweb/kit": "0.5.11",
|
|
44
|
+
"@uniweb/build": "0.6.19",
|
|
44
45
|
"@uniweb/core": "0.4.7",
|
|
45
|
-
"@uniweb/
|
|
46
|
-
"@uniweb/runtime": "0.5.21"
|
|
46
|
+
"@uniweb/runtime": "0.5.22"
|
|
47
47
|
}
|
|
48
48
|
}
|
package/partials/agents-md.hbs
CHANGED
|
@@ -143,11 +143,12 @@ Components that render their own background declare `background: 'self'` in `met
|
|
|
143
143
|
### Page Organization
|
|
144
144
|
|
|
145
145
|
```
|
|
146
|
+
site/layout/
|
|
147
|
+
├── header.md # type: Header — rendered on every page
|
|
148
|
+
├── footer.md # type: Footer — rendered on every page
|
|
149
|
+
└── left.md # type: LeftPanel — optional sidebar
|
|
150
|
+
|
|
146
151
|
site/pages/
|
|
147
|
-
├── @header/ # Rendered on every page
|
|
148
|
-
│ └── header.md # type: Header
|
|
149
|
-
├── @footer/ # Rendered on every page
|
|
150
|
-
│ └── footer.md # type: Footer
|
|
151
152
|
└── home/
|
|
152
153
|
├── page.yml # title, description, order
|
|
153
154
|
├── hero.md # Single section — no prefix needed
|