You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/cloud/academy/creating-your-learning-path/index.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@ You can find and copy your Organization UUID from your organization page on [Aca
79
79
80
80
3. **Build the Content Hierarchy**
81
81
82
-
With the main folders in place, you can now structure your first course inside the `content` directory. The content is organized in a clear hierarchy: A **Learning Path** contains **Courses**. A **Course** is primarily broken down into **Modules**, but can also conclude with a final **Quiz** that serves as a course exam. Finally, a **Module** consists of individual **Pages**, **Quizzes**, and **Labs**.
82
+
With the main folders in place, you can now structure your first course inside the `content` directory. The content is organized in a clear hierarchy: A **Learning Path** contains **Courses**. A **Course** is primarily broken down into **Modules**, but can also conclude with a final **Test** that serves as a course exam. Finally, a **Module** consists of individual **Pages**and **Labs**.
83
83
84
84
A high-level view of the structure looks like this:
85
85
@@ -91,18 +91,18 @@ You can find and copy your Organization UUID from your organization page on [Aca
91
91
│ └── _index.md
92
92
└── core-concepts/ // <-- Course 2
93
93
├── _index.md
94
-
├── course-exam.md // <-- Course Exam (Quiz)
94
+
├── course-exam.md // <-- Course Exam (Test)
95
95
└── 01-pods-and-services/ // <-- Module
96
96
├── _index.md
97
97
├── 01-pods.md // <-- Page 1
98
98
├── 02-services.md // <-- Page 2
99
-
├── 03-knowledge-check.md // <-- Quiz
99
+
├── 03-knowledge-check.md // <-- Test
100
100
├── 04-hands-on-lab.md // <-- Lab
101
101
└── arch.png // <-- Image
102
102
103
103
```
104
104
105
-
Each folder represents a level in the hierarchy. The `_index.md` file within a folder is crucial as it defines the metadata for that level, such as its `title`, `description`, and `type` (e.g., `type: "course"`). The final `.md` files represent your individual learning activities: **Pages** and **Labs** are typically found inside Modules, while **Quizzes** can be found inside Modules (for knowledge checks) or directly under a Course (as a final exam).
105
+
Each folder represents a level in the hierarchy. The `_index.md` file within a folder is crucial as it defines the metadata for that level, such as its `title`, `description`, and `type` (e.g., `type: "course"`). The final `.md` files represent your individual learning activities: **Pages** and **Labs** are typically found inside Modules, while **Tests** can be palced at any hierachy - either within Modules (as knowledge checks) or directly under a Course (as a final exam).
106
106
107
107
> For a deeper understanding of how Hugo uses `_index.md` to create content sections, you can refer to the official [Hugo Page Bundles documentation](https://gohugo.io/content-management/page-bundles/).
108
108
@@ -152,7 +152,7 @@ You can find and copy your Organization UUID from your organization page on [Aca
152
152
| All | `description` | ✅ | A brief summary of the content. |
153
153
| All | `weight` | ✅ | Controls the display order (lower numbers appear first). |
154
154
| All | `draft` | ❌ | If `true`, the page will not be published. |
155
-
| All | `type` | ✅ | Defines the content's role. Optional values: `challenge`, `learning-path`, `course`, `module`, `page`, `quiz`, or `lab`. |
155
+
| All | `type` | ✅ | Defines the content's role. Optional values: `challenge`, `learning-path`, `course`, `module`, `page`, `test`, or `lab`. |
156
156
| **Course** | `level` | ❌ | The difficulty level of the content. Optional values: `beginner`, `intermediate`, `advanced`. |
157
157
| **Learning Path** | `id` | ✅ | **Crucial.** A stable UUIDfor tracking progress. **Do not change.** [^1] |
158
158
| **Learning Path**, **Course**, **module** | `tags` | ❌ | Keywordsfor content discovery. Multiple tags can be selected. |
Copy file name to clipboardExpand all lines: content/en/cloud/academy/extending-the-academy/index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,12 +39,12 @@ You don't need to be a web developer to create beautiful and effective learning
39
39
40
40
Your content is structured hierarchically to create a clear and logical learning experience for your users.
41
41
42
-
At the highest level, you have a **Learning Path**, which contains one or more **Courses**. Each Course is broken down into **Modules**, and each Module consists of individual learning activities like **Pages** (for text), **Quizzes** (for knowledge checks), and **Labs**(for hands-on practice). This modular structure makes your content easy to navigate, manage, and update.
42
+
At the highest level, you have a **Learning Path**, which contains one or more **Courses**. Each Course is broken down into **Modules**, and each Module consists of individual learning activities like **Pages** (for text) and **Labs** (for hands-on practice). In addition, **Tests**can be integrated at various levels of this hierarchy. This modular structure makes your content easy to navigate, manage, and update.
43
43
44
44
For example, a **Learning Path** named **"Mastering Kubernetes"** might contain:
45
45
* A **Course** on **"Core Concepts"**, which is broken down into multiple modules:
46
46
* **Module 1: "Workload Fundamentals"**, containing a **Page** on the "Anatomy of a Pod" and a hands-on **Lab** for "Scaling Deployments".
47
-
* **Module 2: "Networking Principles"**, containing a **Page** that covers "Services and Ingress" and a **Quiz** on networking concepts.
47
+
* **Module 2: "Networking Principles"**, containing a **Page** that covers "Services and Ingress" and a **Tests** on networking concepts.
To ensure security and isolation, all of your content files must be placed within a directory named for your organization UUID. You'll learn the specifics of how to do this in our [hands-on tutorial](/cloud/academy/creating-your-learning-path/).
0 commit comments