summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorSaptak S <saptak013@gmail.com>2020-07-06 00:54:29 +0530
committerSaptak S <saptak013@gmail.com>2020-07-06 00:54:29 +0530
commit8ac1ae40ba78116dc0e71fdaab5f1849c6e00678 (patch)
tree1e10c95eb861eea5029ab51a8bbfd6b7ce70be1e /share
parent38d3eec42737221a4464cca7a9b3ecadb208b95c (diff)
downloadonionshare-8ac1ae40ba78116dc0e71fdaab5f1849c6e00678.tar.gz
onionshare-8ac1ae40ba78116dc0e71fdaab5f1849c6e00678.zip
Adds viewport and charset meta tags
Diffstat (limited to 'share')
-rw-r--r--share/templates/401.html2
-rw-r--r--share/templates/403.html2
-rw-r--r--share/templates/404.html2
-rw-r--r--share/templates/405.html2
-rw-r--r--share/templates/denied.html2
-rw-r--r--share/templates/listing.html2
-rw-r--r--share/templates/receive.html2
-rw-r--r--share/templates/send.html2
-rw-r--r--share/templates/thankyou.html2
9 files changed, 18 insertions, 0 deletions
diff --git a/share/templates/401.html b/share/templates/401.html
index dc50f534..5e43ca01 100644
--- a/share/templates/401.html
+++ b/share/templates/401.html
@@ -3,6 +3,8 @@
<head>
<title>OnionShare: 401 Unauthorized Access</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon" />
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
</head>
diff --git a/share/templates/403.html b/share/templates/403.html
index 2ebab09a..c9d28eea 100644
--- a/share/templates/403.html
+++ b/share/templates/403.html
@@ -3,6 +3,8 @@
<head>
<title>OnionShare: 403 Forbidden</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon" />
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
</head>
diff --git a/share/templates/404.html b/share/templates/404.html
index 375c125d..e816f2c4 100644
--- a/share/templates/404.html
+++ b/share/templates/404.html
@@ -3,6 +3,8 @@
<head>
<title>OnionShare: 404 Not Found</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
</head>
diff --git a/share/templates/405.html b/share/templates/405.html
index 55493ae7..63888004 100644
--- a/share/templates/405.html
+++ b/share/templates/405.html
@@ -3,6 +3,8 @@
<head>
<title>OnionShare: 405 Method Not Allowed</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
</head>
diff --git a/share/templates/denied.html b/share/templates/denied.html
index ad4d0b21..49147ef2 100644
--- a/share/templates/denied.html
+++ b/share/templates/denied.html
@@ -3,6 +3,8 @@
<head>
<title>OnionShare</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon" />
</head>
diff --git a/share/templates/listing.html b/share/templates/listing.html
index 2f70dbf0..ea050710 100644
--- a/share/templates/listing.html
+++ b/share/templates/listing.html
@@ -2,6 +2,8 @@
<html>
<head>
<title>OnionShare</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon" />
<link href="{{ static_url_path }}/css/style.css" rel="stylesheet" type="text/css" />
</head>
diff --git a/share/templates/receive.html b/share/templates/receive.html
index b7e7f8e5..20f4bb7e 100644
--- a/share/templates/receive.html
+++ b/share/templates/receive.html
@@ -2,6 +2,8 @@
<html>
<head>
<title>OnionShare</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
</head>
diff --git a/share/templates/send.html b/share/templates/send.html
index 85e2c3c5..dd30bfdd 100644
--- a/share/templates/send.html
+++ b/share/templates/send.html
@@ -3,6 +3,8 @@
<head>
<title>OnionShare</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
<meta name="onionshare-filename" content="{{ filename }}">
diff --git a/share/templates/thankyou.html b/share/templates/thankyou.html
index b7e2b97c..aa0bc553 100644
--- a/share/templates/thankyou.html
+++ b/share/templates/thankyou.html
@@ -3,6 +3,8 @@
<head>
<title>OnionShare is closed</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="{{ static_url_path }}/img/favicon.ico" rel="icon" type="image/x-icon">
<link rel="stylesheet" rel="subresource" type="text/css" href="{{ static_url_path }}/css/style.css" media="all">
</head>