Documentation updates, patches image paths in themes to load remote images from Github

This commit is contained in:
Pieter Vander Vennet 2021-04-17 11:37:22 +02:00
parent 0abaf5c139
commit 882e2c4aa9
8 changed files with 93 additions and 18 deletions

View file

@ -10,7 +10,7 @@ export class AllKnownLayouts {
public static layoutsList: LayoutConfig[] = AllKnownLayouts.GenerateOrderedList(AllKnownLayouts.allKnownLayouts);
private static GenerateOrderedList(allKnownLayouts: Map<string, LayoutConfig>): LayoutConfig[] {
const keys = ["personal", "cyclofix", "bookcases", "toilets", "aed"]
const keys = ["personal", "cyclofix", "hailhydrant", "bookcases", "toilets", "aed"]
const list = []
for (const key of keys) {
list.push(allKnownLayouts.get(key))