From: Bastien Wirtz Date: Wed, 18 Mar 2020 05:17:07 +0000 (-0700) Subject: Merge pull request #27 from traeblain/feature-burger X-Git-Tag: v1.0~2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=2cf93f388130134d8ff9cf1af7535e21cafc207f;hp=7cc525b2a65ce07a340562864682e663ab46bb84;p=github%2Fbastienwirtz%2Fhomer.git Merge pull request #27 from traeblain/feature-burger Added Hamburger Menu for small screens per Bulma spec. --- diff --git a/README.md b/README.md index edd7d70..11d4714 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ message: content: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque risus mi, tempus quis placerat ut, porta nec nulla. Vestibulum rhoncus ac ex sit amet fringilla. Nullam gravida purus diam, et dictum felis venenatis efficitur. Aenean ac eleifend lacus, in mollis lectus. Donec sodales, arcu et sollicitudin porttitor, tortor urna tempor ligula." # Optional navbar +# links: [] # Allows for navbar (dark mode, layout, and search) without any links links: - name: "ansible" icon: "fa-github" diff --git a/app.js b/app.js index a296069..6c83074 100644 --- a/app.js +++ b/app.js @@ -21,6 +21,7 @@ const app = new Vue({ this.checkOffline(); try { this.config = await this.getConfig(); + document.title = this.config.title + ' | Homer'; } catch (error) { this.offline = true; } diff --git a/config.yml b/config.yml index e8c4352..1b97458 100644 --- a/config.yml +++ b/config.yml @@ -16,6 +16,7 @@ message: content: "This is a dummy homepage demo. Find more information on github.com/bastienwirtz/homer" # Optional navbar +# links: [] # Allows for navbar (dark mode, layout, and search) without any links links: - name: "ansible" icon: "fab fa-github"