From fcf7ad3b32e182293763e0cf1d6948549a761a0d Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Tue, 2 Feb 2021 23:16:16 +0000 Subject: [PATCH] Add a <meta> viewport tag --- node/bindata.go | 3 ++- node/templates/index.html | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/node/bindata.go b/node/bindata.go index 1a158f0a..ca69fac2 100644 --- a/node/bindata.go +++ b/node/bindata.go @@ -505,6 +505,7 @@ var _templatesIndexHtml = []byte(`<!DOCTYPE html> <link rel="stylesheet" href="/static/css/bootstrap.min.css"> <link rel="stylesheet" href="/static/css/style.css"> <link rel="shortcut icon" href="/static/radio52.png"> + <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> @@ -601,7 +602,7 @@ func templatesIndexHtml() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "templates/index.html", size: 2964, mode: os.FileMode(420), modTime: time.Unix(1612305970, 0)} + info := bindataFileInfo{name: "templates/index.html", size: 3037, mode: os.FileMode(420), modTime: time.Unix(1612307759, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/node/templates/index.html b/node/templates/index.html index 8e22c61a..bb1a1b7d 100644 --- a/node/templates/index.html +++ b/node/templates/index.html @@ -5,6 +5,7 @@ <link rel="stylesheet" href="/static/css/bootstrap.min.css"> <link rel="stylesheet" href="/static/css/style.css"> <link rel="shortcut icon" href="/static/radio52.png"> + <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> -- GitLab