Presentation blocks (optional module)
The overview-deck view's data (schema/presentation.wcl): one presentation holding pres_section columns of pres_slides. A slide features an existing unit via unit, or carries its own short body.
| Property | Type | Required | Description |
|---|---|---|---|
| id | identifier | yes | |
| title | utf8 | no | |
| summary | utf8 | no | |
| tags | list<utf8> | no |
Child blocks
| Slot | Accepts | Multiple | Description |
|---|---|---|---|
| sections | pres_section | yes |
§ 1.1PresSection
| Property | Type | Required | Description |
|---|---|---|---|
| id | identifier | yes | |
| title | utf8 | yes |
Child blocks
| Slot | Accepts | Multiple | Description |
|---|---|---|---|
| slides | pres_slide | yes |
§ 1.2PresSlide
| Property | Type | Required | Description |
|---|---|---|---|
| id | identifier | yes | |
| title | utf8 | no | |
| unit | identifier | no | |
| speaker_notes | utf8 | no | |
| tags | list<utf8> | no |
Child blocks
| Slot | Accepts | Multiple | Description |
|---|---|---|---|
| body | body | no |
wcl
presentation intro {
summary = "One-line deck subtitle."
pres_section what {
title = "What & why"
pres_slide opening {
unit = fast_forward // pulls that unit's headline + summary
speaker_notes = "What to say while this slide is up."
}
}
}