Module Types.Subpage

type status = [
| `Inline
| `Open
| `Closed
| `Default
]
type t = {
status : status;
content : Page.t;
}