31 lines
952 B
YAML
31 lines
952 B
YAML
|
|
# Source of truth for exhibit content.
|
||
|
|
# A build step generates web/src/lib/stops.json from this file.
|
||
|
|
#
|
||
|
|
# Each stop has:
|
||
|
|
# id — integer, used in URLs and as the asset basename
|
||
|
|
# title — short label, shown in the grid and on the detail page
|
||
|
|
# audio — filename in content/audio/, transcoded to web/static/audio/
|
||
|
|
# image — filename in content/images/, transcoded to web/static/images/
|
||
|
|
# caption — short line shown beneath the title
|
||
|
|
# description — longer text shown below the audio player (markdown allowed)
|
||
|
|
|
||
|
|
exhibit:
|
||
|
|
title: "TBD"
|
||
|
|
subtitle: "TBD"
|
||
|
|
|
||
|
|
stops:
|
||
|
|
- id: 1
|
||
|
|
title: "Welcome"
|
||
|
|
audio: 01-welcome.wav
|
||
|
|
image: 01-welcome.png
|
||
|
|
caption: "An introduction to the exhibit."
|
||
|
|
description: |
|
||
|
|
Placeholder for the full description shown on the stop detail page.
|
||
|
|
|
||
|
|
- id: 2
|
||
|
|
title: "Stop two placeholder"
|
||
|
|
audio: 02.wav
|
||
|
|
image: 02.png
|
||
|
|
caption: ""
|
||
|
|
description: ""
|