From 985b052d3961ab97ac9cf2e6f9f712a7a34024e1 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Wed, 16 Nov 2016 14:45:50 +0100 Subject: Set viewport properly for mobile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > The width property controls the size of the viewport. It can be set to > a specific number of pixels like width=600 or to the special value > device-width which is the width of the screen in CSS pixels at a scale > of 100%. > > The initial-scale property controls the zoom level when the page is > first loaded. — https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag Signed-off-by: Johannes Löthberg --- templates/layout.html | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/layout.html b/templates/layout.html index 562764f..487a040 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -2,6 +2,7 @@ + {% block head %}{% endblock %}