From 51829a85c42106b0e1b907db659b2749c26d241b Mon Sep 17 00:00:00 2001 From: Wurzelmann Date: Sat, 5 Feb 2022 20:50:46 +0100 Subject: fixed typo: "additionnal" -> "additional" Fixed all occurrences of a typo (additionnal). --- public/assets/config.yml.dist | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'public') diff --git a/public/assets/config.yml.dist b/public/assets/config.yml.dist index acdd32c..63d022a 100644 --- a/public/assets/config.yml.dist +++ b/public/assets/config.yml.dist @@ -58,11 +58,11 @@ links: - name: "Wiki" icon: "fas fa-book" url: "https://www.wikipedia.org/" - # this will link to a second homer page that will load config from additionnal-page.yml and keep default config values as in config.yml file - # see url field and assets/additionnal-page.yml.dist used in this example: + # this will link to a second homer page that will load config from additional-page.yml and keep default config values as in config.yml file + # see url field and assets/additional-page.yml.dist used in this example: - name: "another page!" icon: "fas fa-file-alt" - url: "#additionnal-page" + url: "#additional-page" # Services # First level array represent a group. -- cgit v1.2.3 From 8b9ec8465f061e02c1d2babf957e7de65c82396c Mon Sep 17 00:00:00 2001 From: Wurzelmann Date: Fri, 11 Feb 2022 11:44:32 +0100 Subject: fixed typos: "Additionnal" -> "Additional" Fixed all occurrences of typo "Additionnal" (including file name) --- public/assets/additional-page.yml.dist | 35 +++++++++++++++++++++++++++++++++ public/assets/additionnal-page.yml.dist | 35 --------------------------------- 2 files changed, 35 insertions(+), 35 deletions(-) create mode 100644 public/assets/additional-page.yml.dist delete mode 100644 public/assets/additionnal-page.yml.dist (limited to 'public') diff --git a/public/assets/additional-page.yml.dist b/public/assets/additional-page.yml.dist new file mode 100644 index 0000000..5d377ee --- /dev/null +++ b/public/assets/additional-page.yml.dist @@ -0,0 +1,35 @@ +--- +# Additional page configuration + +# Additional configurations are loaded using its file name, minus the extension, as an anchor (https://#). +# `config.yml` is still used as a base configuration, and all values here will overwrite it, so you don't have to re-defined everything + + +subtitle: "this is another dashboard page" + +# This overwrites message config. Setting it to empty to remove message from this page and keep it only in the main one: +message: ~ + +# 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: +links: + - name: "Home" + icon: "fas fa-home" + url: "#" + - name: "Contribute" + icon: "fab fa-github" + url: "https://github.com/bastienwirtz/homer" + target: "_blank" # optional html a tag target attribute + - name: "Wiki" + icon: "fas fa-book" + url: "https://www.wikipedia.org/" + +services: + - name: "More applications on another page!" + icon: "fas fa-cloud" + items: + - name: "Awesome app on a second page!" + logo: "assets/tools/sample.png" + subtitle: "Bookmark example" + tag: "app" + url: "https://www.reddit.com/r/selfhosted/" + target: "_blank" diff --git a/public/assets/additionnal-page.yml.dist b/public/assets/additionnal-page.yml.dist deleted file mode 100644 index f918dc1..0000000 --- a/public/assets/additionnal-page.yml.dist +++ /dev/null @@ -1,35 +0,0 @@ ---- -# Additionnal page configuration - -# Additionnal configurations are loaded using its file name, minus the extension, as an anchor (https://#). -# `config.yml` is still used as a base configuration, and all values here will overwrite it, so you don't have to re-defined everything - - -subtitle: "this is another dashboard page" - -# This overwrites message config. Setting it to empty to remove message from this page and keep it only in the main one: -message: ~ - -# 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: -links: - - name: "Home" - icon: "fas fa-home" - url: "#" - - name: "Contribute" - icon: "fab fa-github" - url: "https://github.com/bastienwirtz/homer" - target: "_blank" # optional html a tag target attribute - - name: "Wiki" - icon: "fas fa-book" - url: "https://www.wikipedia.org/" - -services: - - name: "More applications on another page!" - icon: "fas fa-cloud" - items: - - name: "Awesome app on a second page!" - logo: "assets/tools/sample.png" - subtitle: "Bookmark example" - tag: "app" - url: "https://www.reddit.com/r/selfhosted/" - target: "_blank" -- cgit v1.2.3 From 775d0a8e862247bc78a53d6cf0ceef5651d4f98c Mon Sep 17 00:00:00 2001 From: Little-Karl Date: Sun, 20 Mar 2022 07:34:16 +0800 Subject: FA note chages for new users (#404) Update link to Font Awesome to reference v5 directly --- public/assets/config.yml.dist | 2 +- public/assets/config.yml.dist.sample-sui | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'public') diff --git a/public/assets/config.yml.dist b/public/assets/config.yml.dist index 63d022a..03a8682 100644 --- a/public/assets/config.yml.dist +++ b/public/assets/config.yml.dist @@ -1,6 +1,6 @@ --- # Homepage configuration -# See https://fontawesome.com/icons for icons options +# See https://fontawesome.com/v5/search for icons options title: "Demo dashboard" subtitle: "Homer" diff --git a/public/assets/config.yml.dist.sample-sui b/public/assets/config.yml.dist.sample-sui index ff7f80a..4ebf4a4 100644 --- a/public/assets/config.yml.dist.sample-sui +++ b/public/assets/config.yml.dist.sample-sui @@ -1,6 +1,6 @@ --- # Homepage configuration -# See https://fontawesome.com/icons for icons options +# See https://fontawesome.com/v5/search for icons options title: "Hello beautiful!" subtitle: "App dashboard" -- cgit v1.2.3