Merge pull request #34 from cassiobotaro/browser_color

Added browser color configuration
This commit is contained in:
Alexandre Vicenzi 2016-04-22 23:34:13 -03:00
commit 02a06cd89b
2 changed files with 10 additions and 0 deletions

View file

@ -33,6 +33,15 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="robots" content="{{ ROBOTS }}" />
{% if BROWSER_COLOR %}
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="{{ BROWSER_COLOR }}">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="{{ BROWSER_COLOR }}">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
{% endif %}
{% block meta %}
<meta name="author" content="{{ AUTHOR }}" />

View file

@ -11,6 +11,7 @@ SITESUBTITLE = u'Test'
SITEDESCRIPTION = u'%s\'s Thoughts and Writings' % AUTHOR
SITELOGO = u'https://www.example.com/img/profile.png'
FAVICON = SITEURL + '/images/favicon.ico'
BROWSER_COLOR = '#333'
ROBOTS = u'index, follow'