Merge pull request #148 from joariasl/master

Added Color the browser elements for mobile browsers
This commit is contained in:
Panos Sakkos 2016-02-24 01:03:17 +01:00
commit c0767f78c7
3 changed files with 16 additions and 0 deletions

View file

@ -61,6 +61,12 @@ lines: # You can add HTML Tags in the Text
me-img: "/img/jetpacktocat.png"
##############################
# Color the browser elements #
##############################
color-browser: "#000000"
apple-status-bar-style: "black"
################
# Web app mode #
################

View file

@ -0,0 +1,8 @@
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="{{site.color-browser}}">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="{{site.color-browser}}">
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="{{site.apple-status-bar-style}}">

View file

@ -42,6 +42,8 @@
{% include web-app.html %}
{% include color-browser.html %}
{% include syntax-highlight.html %}
</head>