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
+6-3Lines changed: 6 additions & 3 deletions
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: **Learning Path → Course → Module → Page, Quiz, or Lab.**
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**.
83
83
84
84
A high-level view of the structure looks like this:
85
85
@@ -90,16 +90,19 @@ You can find and copy your Organization UUID from your organization page on [Aca
90
90
├── advanced-networking/ // <-- Course 1
91
91
│ └── _index.md
92
92
└── core-concepts/ // <-- Course 2
93
-
├── _index.md
93
+
├── _index.md
94
+
├── course-exam.md // <-- Course Exam (Quiz)
94
95
└── 01-pods-and-services/ // <-- Module
95
96
├── _index.md
96
97
├── 01-pods.md // <-- Page 1
97
98
├── 02-services.md // <-- Page 2
98
99
├── 03-knowledge-check.md // <-- Quiz
99
100
├── 04-hands-on-lab.md // <-- Lab
100
101
└── arch.png // <-- Image
102
+
101
103
```
102
-
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 at the lowest level are your individual **Pages**, **Quizzes**, or **Labs**.
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).
103
106
104
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/).
0 commit comments