Merge upstream

This commit is contained in:
Pieter Vander Vennet 2022-12-16 13:40:25 +01:00
parent 87b7bd9bc2
commit 0bd28b996c
124 changed files with 2643 additions and 1009 deletions

View file

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