Add documentation on themes, move some themes around

This commit is contained in:
Pieter Vander Vennet 2022-11-30 21:38:50 +01:00
parent 614987dba7
commit 8cb02da127
88 changed files with 2973 additions and 244 deletions

View file

@ -218,10 +218,11 @@ export class AllKnownLayouts {
new Title(new Combine([theme.title, "(", theme.id + ")"]), 2),
theme.description,
"This theme contains the following layers:",
new List(theme.layers.map((l) => l.id)),
new List(theme.layers.map((l) =>
new Link(l.id, "../Layers/"+l.id+".md"))),
"Available languages:",
new List(theme.language),
])
new List(theme.language.filter(ln => ln !== "_context")),
]).SetClass("flex flex-col")
}
public static getSharedLayers(): Map<string, LayerConfig> {