From 69d54d28cf43e2a10ad2b6873ef13bbbbcefacca Mon Sep 17 00:00:00 2001 From: Carl Worth <cworth@cworth.org> Date: Sun, 24 May 2020 08:53:31 -0700 Subject: [PATCH] Fix viewport meta tag to use proper separators I have no idea where these semicolons came from. Thanks to the chromium console for reporting that they should be commas instead. --- templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/base.html b/templates/base.html index 6895772..42b38bd 100644 --- a/templates/base.html +++ b/templates/base.html @@ -2,7 +2,7 @@ <html> <head> <meta charset="utf-8"/> - <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> <title>{{ title }}</title> -- 2.45.2