Enable multiple radars

This commit is contained in:
Christian Köberl
2022-03-03 16:38:44 +01:00
committed by Bastian
parent b30f7fe5d4
commit faadd8681d
4 changed files with 67 additions and 46 deletions

View File

@@ -156,6 +156,27 @@ The content should look as follows:
}
```
### Create different Radars
To create different radars with one set of blips put a `radars` entry in your frontmatter:
```yaml
---
title: Item
ring: adopt
quadrant: tools
radars: [radar-1, radar-2]
---
```
Then, to select the blips put a `radar` entry in the `config.json` for generating the site:
```json
{
"radar": "radar-1",
"quadrants": {
...
```
This will only add blips with the defined radar into the output.
### Change the index.html
To change the index.html, create a public folder in your application and put your `index.html` in it.