Skip to content

Commit

Permalink
Adds support for meta theme-color (daattali#692)
Browse files Browse the repository at this point in the history
  • Loading branch information
lexicalunit committed Aug 8, 2020
1 parent 8690b60 commit b401457
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## Unreleased version

- 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)

Expand Down
5 changes: 5 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ footer-link-col: "#404040"
#footer-img: "/assets/img/bgimage.png"
#page-img: "/assets/img/bgimage.png"

# Customize the site coloration for your website. This is used by various applications,
# for example many mobile browsers will use this color in their user interface elements
# when users view your website.
#custom-site-color: ""

# You can also include any number of additional CSS assets in every page on your site
#site-css:
# - "/assets/css/my-style.css"
Expand Down
4 changes: 4 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
<meta name="description" content="{{ page.subtitle }}">
{% endif %}

{% if site.custom-site-color %}
<meta name="theme-color" content="{{ site.custom-site-color }}">
{% endif %}

<link rel="alternate" type="application/rss+xml" title="{{ site.title | default: 'Untitled' }} {{ site.title-separator | default: '-' }} {{ site.description }}" href="{{ '/feed.xml' | absolute_url }}">

{% include gtag.html %}
Expand Down

0 comments on commit b401457

Please sign in to comment.