diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml index 01ec60f..1d372fb 100644 --- a/exampleSite/config.yaml +++ b/exampleSite/config.yaml @@ -22,6 +22,40 @@ params: - kromo - infinite - gutwork + sidebar: + # Logo (from /images/logos/___.svg) + logo: fresh-square + sections: + - title: User + icon: user + links: + - text: Profile + url: / + - text: Account + url: / + - text: Settings + url: / + - title: Messages + icon: envelope + links: + - text: Inbox + url: / + - text: Compose + url: / + - title: Images + icon: image + links: + - text: Library + url: / + - text: Upload + url: / + - title: Settings + icon: cog + links: + - text: User settings + url: / + - text: App settings + url: / section1: title: Great power comes subtitle: with great responsibility @@ -77,6 +111,19 @@ params: footer: # Logo (from /images/logos/___) logo: fresh-white-alt.svg + # Social media links (GitHub, Twitter, etc.). All are optional. + socialmedia: + - link: https://github.com/lucperkins/github-fresh + icon: github + - link: https://dribbble.com/# + icon: dribbble + - link: https://facebook.com/# + icon: facebook + - link: https://twitter.com/lucperkins + icon: twitter + - link: https://bitbucket.org/# + icon: bitbucket + bulmalogo: true product: - text: Discover features link: / diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 0a1e437..fcd94dc 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -2,6 +2,8 @@ {{- $logo := index $footer "logo" }} {{- $productLinks := index $footer "product" }} {{- $docLinks := index $footer "docs" }} +{{- $socialMedia := index $footer "socialmedia" }} +{{- $bulmaLogo := index $footer "bulmalogo" }}