diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2021-03-06 22:09:58 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-06 22:09:58 -0800 |
commit | 00b46a6ddebcbbe581f201bd4089c38f6d666fb9 (patch) | |
tree | e26dd615b3adf273b99e58329b8caa2050c1d308 /public/assets | |
parent | cc7ff885527283d97f32347210b0370e8477c4ff (diff) | |
parent | c6267296ec03db24ff40959ef58eedcec904c39b (diff) | |
download | homer-00b46a6ddebcbbe581f201bd4089c38f6d666fb9.tar.gz homer-00b46a6ddebcbbe581f201bd4089c38f6d666fb9.tar.zst homer-00b46a6ddebcbbe581f201bd4089c38f6d666fb9.zip |
Merge pull request #177 from luixal/multiple-pages
Adds multiple pages based on different config files
Diffstat (limited to 'public/assets')
-rw-r--r-- | public/assets/page2.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/public/assets/page2.yml b/public/assets/page2.yml new file mode 100644 index 0000000..00001e9 --- /dev/null +++ b/public/assets/page2.yml | |||
@@ -0,0 +1,34 @@ | |||
1 | # this config is used by a page linked in the navbar | ||
2 | # this pages will use the same configuration from config.yml, but will overwrite fields present here | ||
3 | |||
4 | # this overwrites title and subtitle: | ||
5 | title: "Page2" | ||
6 | subtitle: "this is the second page" | ||
7 | |||
8 | # this overwrites message config. Setting it to empty to remove message from this page and keep it only in the main one: | ||
9 | message: | ||
10 | |||
11 | # as we want to include a differente link here (so we can get back to home page), we need to replicate all links or they will be revome when overwriting the links field: | ||
12 | links: | ||
13 | - name: "Home" | ||
14 | icon: "fas fa-home" | ||
15 | url: "/" | ||
16 | - name: "Contribute" | ||
17 | icon: "fab fa-github" | ||
18 | url: "https://github.com/bastienwirtz/homer" | ||
19 | target: "_blank" # optional html a tag target attribute | ||
20 | - name: "Wiki" | ||
21 | icon: "fas fa-book" | ||
22 | url: "https://www.wikipedia.org/" | ||
23 | |||
24 | # we keep the first group from the main page, but remove the second group. We need to replicate that first group or it will be removed: | ||
25 | services: | ||
26 | - name: "NEW" | ||
27 | icon: "fas fa-cloud" | ||
28 | items: | ||
29 | - name: "Awesome app on a second page!" | ||
30 | logo: "assets/tools/sample.png" | ||
31 | subtitle: "Bookmark example" | ||
32 | tag: "app" | ||
33 | url: "https://www.reddit.com/r/selfhosted/" | ||
34 | target: "_blank" | ||