diff --git a/CHANGELOG.md b/CHANGELOG.md index dab434d..b163ce7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## Unreleased version +- Adds support for site level keywords page meta header. (#691) - Adds support for custom meta-theme site color. (#692) - Add support for `site-css` config parameter to provide site-level CSS files. (#695) - Add support for `description` YAML parameter to provide a more detailed meta description (#690) diff --git a/_config.yml b/_config.yml index 3568fc4..8ecc00d 100644 --- a/_config.yml +++ b/_config.yml @@ -80,6 +80,9 @@ link-tags: true # Excerpt Word Length - Truncates the excerpt to the specified number of words on the index page excerpt_length: 50 +# Sets the search engine keywords for pages on your site +#keywords: "my,list,of,keywords" + # --- Colours / background image --- # # Personalize the colors in your website. Colour values can be any valid CSS colour diff --git a/_includes/head.html b/_includes/head.html index ada9ffc..9d813aa 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -18,6 +18,10 @@ {% endif %} + {% if site.keywords %} + + {% endif %} + {% include gtag.html %}