From c4c559124b75fd9b82f09032119dcec9f95c5dde Mon Sep 17 00:00:00 2001 From: ZihanKuang Date: Thu, 31 Jul 2025 12:45:26 +0000 Subject: [PATCH 1/2] add-course-quiz Signed-off-by: ZihanKuang --- .../cloud/academy/creating-your-learning-path/index.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/content/en/cloud/academy/creating-your-learning-path/index.md b/content/en/cloud/academy/creating-your-learning-path/index.md index a7f175fbb..8b6057d44 100644 --- a/content/en/cloud/academy/creating-your-learning-path/index.md +++ b/content/en/cloud/academy/creating-your-learning-path/index.md @@ -79,7 +79,7 @@ You can find and copy your Organization UUID from your organization page on [Aca 3. **Build the Content Hierarchy** - 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.** + 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**. A high-level view of the structure looks like this: @@ -90,7 +90,8 @@ You can find and copy your Organization UUID from your organization page on [Aca ├── advanced-networking/ // <-- Course 1 │ └── _index.md └── core-concepts/ // <-- Course 2 - ├── _index.md + ├── _index.md + └── course-exam.md // <-- Course Exam (Quiz) └── 01-pods-and-services/ // <-- Module ├── _index.md ├── 01-pods.md // <-- Page 1 @@ -98,8 +99,10 @@ You can find and copy your Organization UUID from your organization page on [Aca ├── 03-knowledge-check.md // <-- Quiz ├── 04-hands-on-lab.md // <-- Lab └── arch.png // <-- Image + ``` - 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**. + + 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). > 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/). From 87d11a9ec63b5ca60c51b100420de1551afd581a Mon Sep 17 00:00:00 2001 From: ZihanKuang Date: Thu, 31 Jul 2025 12:49:14 +0000 Subject: [PATCH 2/2] add-course-quiz Signed-off-by: ZihanKuang --- content/en/cloud/academy/creating-your-learning-path/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/cloud/academy/creating-your-learning-path/index.md b/content/en/cloud/academy/creating-your-learning-path/index.md index 8b6057d44..6c8498651 100644 --- a/content/en/cloud/academy/creating-your-learning-path/index.md +++ b/content/en/cloud/academy/creating-your-learning-path/index.md @@ -91,7 +91,7 @@ You can find and copy your Organization UUID from your organization page on [Aca │ └── _index.md └── core-concepts/ // <-- Course 2 ├── _index.md - └── course-exam.md // <-- Course Exam (Quiz) + ├── course-exam.md // <-- Course Exam (Quiz) └── 01-pods-and-services/ // <-- Module ├── _index.md ├── 01-pods.md // <-- Page 1