diff options
author | Erkan Valentin <erkan2005@gmail.com> | 2012-06-10 18:11:37 +0200 |
---|---|---|
committer | Erkan Valentin <erkan2005@gmail.com> | 2012-06-10 18:11:37 +0200 |
commit | 04d2f41a5470dfad7ef6a90e1110fa11de0e5750 (patch) | |
tree | 257cd4b9ba4fbbcbec5bf819e5cac9545ab29c92 /source | |
parent | f0970b95f09953b29703587b82a03b61c74b8d56 (diff) | |
download | octopress-theme-jeyzu-04d2f41a5470dfad7ef6a90e1110fa11de0e5750.zip octopress-theme-jeyzu-04d2f41a5470dfad7ef6a90e1110fa11de0e5750.tar.gz |
the separator for viewport value is commas
Diffstat (limited to 'source')
-rw-r--r-- | source/_includes/head.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/_includes/head.html b/source/_includes/head.html index 29d99b5..2adee9f 100644 --- a/source/_includes/head.html +++ b/source/_includes/head.html @@ -8,7 +8,7 @@ {% capture description %}{% if page.description %}{{ page.description }}{% else %}{{ content | raw_content }}{% endif %}{% endcapture %} <meta name="description" content="{{ description | strip_html | condense_spaces | truncate:150 }}"> {% if page.keywords %}<meta name="keywords" content="{{ page.keywords }}">{% endif %} - <meta name="viewport" content="width=device-width; initial-scale=1; maximum-scale=1"> + <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml"> <link rel="canonical" href="{{ canonical }}"> |