cyber-elx 1.0.6 → 1.0.7
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/DEV_DOC/ThemeDev.md +3 -2
- package/README.md +9 -4
- package/package.json +1 -1
- package/src/index.js +1 -1
package/DEV_DOC/ThemeDev.md
CHANGED
|
@@ -273,7 +273,8 @@ Note: Available in All pages, and configurable from the website administration,
|
|
|
273
273
|
+ Sample: `"My Website"`
|
|
274
274
|
- Navbar categories style:
|
|
275
275
|
+ Name: `navbarCategoriesStyle`
|
|
276
|
-
+ Sample: `true` or `false` (If true, the categories
|
|
276
|
+
+ Sample: `true` or `false` (If true, the categories should be displayed in the navbar as a dropdown menu, parent [with parentId == null])
|
|
277
|
+
+ Important: If `true`, all categories `category.parentId` will be `null`
|
|
277
278
|
- Language:
|
|
278
279
|
+ Name: `lang`
|
|
279
280
|
+ Sample: `"en"`, `"ar"` or `"fr"`
|
|
@@ -577,7 +578,7 @@ Note: Available in All pages, and configurable from the website administration,
|
|
|
577
578
|
- The Home page URL: `/p/home`
|
|
578
579
|
- The Blogs page URL: `/p/blogs`
|
|
579
580
|
- The Blog page URL: `/p/blog/<ARTICLE_ID>`
|
|
580
|
-
- The Courses page URL: `/p/courses`
|
|
581
|
+
- The Courses page URL: `/p/courses` (Doesn't use it, unless asked for it, since clients prefer to make the users navigate to the categories page then the courses)
|
|
581
582
|
- The Course page URL: `/p/course/<COURSE_ID>`
|
|
582
583
|
- The Contact page URL: `/p/contact`
|
|
583
584
|
- The Category page URL: `/p/categories/<CATEGORY_ID>`
|
package/README.md
CHANGED
|
@@ -4,12 +4,17 @@ CyberOcean CLI tool to upload/download ELX custom pages (Liquid templates).
|
|
|
4
4
|
For detailed AI development documentation, see [DEV_DOC.md](DEV_DOC.md).
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
npm install -g cyber-elx
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## Update
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm update -g cyber-elx
|
|
13
18
|
```
|
|
14
19
|
|
|
15
20
|
## Usage
|
package/package.json
CHANGED
package/src/index.js
CHANGED