Skip to content

Commit 9d2354b

Browse files
authored
Merge pull request #735 from Vincamine/w-quiz-to-test
[Docs] Replace 'quiz' with 'test' in Academy pages for consistency
2 parents 23c5d83 + b917666 commit 9d2354b

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

  • content/en/cloud/academy

content/en/cloud/academy/creating-your-learning-path/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ You can find and copy your Organization UUID from your organization page on [Aca
7979
8080
3. **Build the Content Hierarchy**
8181
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**.
8383
8484
A high-level view of the structure looks like this:
8585
@@ -91,18 +91,18 @@ You can find and copy your Organization UUID from your organization page on [Aca
9191
│ └── _index.md
9292
└── core-concepts/ // <-- Course 2
9393
├── _index.md
94-
├── course-exam.md // <-- Course Exam (Quiz)
94+
├── course-exam.md // <-- Course Exam (Test)
9595
└── 01-pods-and-services/ // <-- Module
9696
├── _index.md
9797
├── 01-pods.md // <-- Page 1
9898
├── 02-services.md // <-- Page 2
99-
├── 03-knowledge-check.md // <-- Quiz
99+
├── 03-knowledge-check.md // <-- Test
100100
├── 04-hands-on-lab.md // <-- Lab
101101
└── arch.png // <-- Image
102102
103103
```
104104
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).
106106
107107
> 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/).
108108
@@ -152,7 +152,7 @@ You can find and copy your Organization UUID from your organization page on [Aca
152152
| All | `description` | ✅ | A brief summary of the content. |
153153
| All | `weight` | ✅ | Controls the display order (lower numbers appear first). |
154154
| 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`. |
156156
| **Course** | `level` | ❌ | The difficulty level of the content. Optional values: `beginner`, `intermediate`, `advanced`. |
157157
| **Learning Path** | `id` | ✅ | **Crucial.** A stable UUID for tracking progress. **Do not change.** [^1] |
158158
| **Learning Path**, **Course**, **module** | `tags` | ❌ | Keywords for content discovery. Multiple tags can be selected. |

content/en/cloud/academy/extending-the-academy/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ You don't need to be a web developer to create beautiful and effective learning
3939

4040
Your content is structured hierarchically to create a clear and logical learning experience for your users.
4141

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.
4343

4444
For example, a **Learning Path** named **"Mastering Kubernetes"** might contain:
4545
* A **Course** on **"Core Concepts"**, which is broken down into multiple modules:
4646
* **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.
4848

4949
{{< alert type="warning" title="Content Isolation" >}}
5050
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

Comments
 (0)