Merge pull request #8 from ethanmad/themecolor

Add theme-color tag in header (defined by themecolor param)
This commit is contained in:
Keichi Takahashi 2015-05-12 21:56:37 +09:00
commit 4d7a1fb621
2 changed files with 4 additions and 0 deletions

View File

@ -54,6 +54,7 @@ copyright = "© Copyright notice"
bio = "Your short bio/tagline"
# Short subtitle/tagline. This is displayed in the header.
subtitle = "is a software developer, hardware hacker and a beer lover. He believes in the power of code."
themecolor = "#hexcolor" # Defines the tab color in Chrome for Android.
```
## Usage

View File

@ -3,6 +3,9 @@
<head prefix="og: http://ogp.me/ns#">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
{{ with .Site.Params.themecolor }}
<meta name="theme-color" content="{{ . }}" />
{{ end }}
<meta property="og:title" content="{{ if ne .Url "/" }} {{ .Title }} &middot; {{ end }} {{ .Site.Title }}" />
<meta property="og:site_name" content="{{ .Site.Title }}" />
<meta property="og:url" content="{{ .Permalink }}" />