From bcf4d1dc19b1dd58a1df9acd1bf0b93cc75e4a17 Mon Sep 17 00:00:00 2001 From: Hristo Yankov Date: Mon, 8 Feb 2016 23:36:51 +0200 Subject: [PATCH] Add show-avatar: true to the default parameters --- README.md | 2 +- _config.yml | 1 + _layouts/default.html | 1 - 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 986c4f1..19b1755 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ css | List of local CSS files to include in the page ex-css | List of external CSS files to include in the page googlefonts | List of Google fonts to include in the page (eg. `["Monoton", "Lobster"]`) fb-img | If you want to share a page on Facebook, by default Facebook will use the first image it can find on the page. If you want to specify an image to use when sharing the page on Facebook, then provide the image's URL here -show_avatar | If you have an avatar configured in the _config.yml but you don't want to appear on every page you can turn it off by removing this flag from the default layout (_layouts/default.html) and enable it only on the pages where you want to. Note: the specific value doesn't matter only whether it's defined or not. +show-avatar | If you have an avatar configured in the `_config.yml` but you want to turn it off on a specific page, use `show-avatar: false`. If you want to turn it off by default, change `show-avatar` to `false` in the file `_layouts/default.html` and then you can selectively turn it on in specific pages using `show-avatar: true` ### RSS feed diff --git a/_config.yml b/_config.yml index 3db29ab..c56c7a2 100644 --- a/_config.yml +++ b/_config.yml @@ -88,6 +88,7 @@ defaults: path: "" # all files values: layout: "default" + show-avatar: true # Exclude these files from production site exclude: diff --git a/_layouts/default.html b/_layouts/default.html index 5bc718d..447999a 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,5 +1,4 @@ --- -show-avatar: true common-css: - "/css/bootstrap.min.css" - "/css/main.css"