diff options
author | Simon McVittie <smcv@debian.org> | 2014-11-26 00:02:55 +0000 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2014-12-01 21:29:46 +0000 |
commit | ceab72ad341bb216467a3bdaf6ee0a32be99de02 (patch) | |
tree | ea27cb07caa6eaf0b56a485cd967241d3ab3026c /templates | |
parent | 5fe28eb4c29cb31bd6293beb67cccc9b01e967ec (diff) | |
download | ikiwiki-ceab72ad341bb216467a3bdaf6ee0a32be99de02.tar ikiwiki-ceab72ad341bb216467a3bdaf6ee0a32be99de02.tar.gz |
page.tmpl: tell mobile browsers we have a responsive layout, unless told not to
Mobile browsers typically assume that arbitrary web pages are
designed for a "desktop-sized" browser window (around 1000px)
and display that layout, zoomed out, in order to avoid breaking
naive designs that assume nobody will ever look at a website on
a phone or something. People who are actually doing "responsive
design" need to opt-in to mobile browsers rendering it at a
more normal size.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/page.tmpl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/page.tmpl b/templates/page.tmpl index 301c737fe..9e8b330a4 100644 --- a/templates/page.tmpl +++ b/templates/page.tmpl @@ -8,6 +8,7 @@ </TMPL_IF> <TMPL_IF HTML5><meta charset="utf-8" /><TMPL_ELSE><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></TMPL_IF> <title><TMPL_VAR TITLE></title> +<TMPL_IF RESPONSIVE_LAYOUT><meta name="viewport" content="width=device-width, initial-scale=1" /></TMPL_IF> <TMPL_IF FAVICON> <link rel="icon" href="<TMPL_VAR BASEURL><TMPL_VAR FAVICON>" type="image/x-icon" /> </TMPL_IF> |