Added browser color configuration
This commit is contained in:
parent
ab0f263d4c
commit
1eafe20027
2 changed files with 10 additions and 0 deletions
|
@ -33,6 +33,15 @@
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<meta name="robots" content="{{ ROBOTS }}" />
|
<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 %}
|
{% block meta %}
|
||||||
<meta name="author" content="{{ AUTHOR }}" />
|
<meta name="author" content="{{ AUTHOR }}" />
|
||||||
|
|
|
@ -11,6 +11,7 @@ SITESUBTITLE = u'Test'
|
||||||
SITEDESCRIPTION = u'%s\'s Thoughts and Writings' % AUTHOR
|
SITEDESCRIPTION = u'%s\'s Thoughts and Writings' % AUTHOR
|
||||||
SITELOGO = u'https://www.example.com/img/profile.png'
|
SITELOGO = u'https://www.example.com/img/profile.png'
|
||||||
FAVICON = SITEURL + '/images/favicon.ico'
|
FAVICON = SITEURL + '/images/favicon.ico'
|
||||||
|
BROWSER_COLOR = '#333'
|
||||||
|
|
||||||
ROBOTS = u'index, follow'
|
ROBOTS = u'index, follow'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue