diff options
author | Marvin Borner | 2019-02-23 11:50:18 +0100 |
---|---|---|
committer | Marvin Borner | 2019-02-23 11:50:18 +0100 |
commit | 9e705de2a836498073327a9d0b8211e015d7d7dc (patch) | |
tree | 7d07c2a08d4c0c2a468397504af8008b0238c92d /views | |
parent | 169c123c1589aeb4a38a123600c692fdecba4d90 (diff) |
Fixed layout for mobile devices
Diffstat (limited to 'views')
-rw-r--r-- | views/layout.pug | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/views/layout.pug b/views/layout.pug index ce4bda5..8c1e992 100644 --- a/views/layout.pug +++ b/views/layout.pug @@ -7,7 +7,11 @@ doctype html html head - title= title + title Texx + meta(charset='UTF-8') + meta(name='viewport', + content='width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0') + meta(http-equiv='X-UA-Compatible' content='ie=edge') script(src='app.js') link(rel='stylesheet', href='app.css') body |