add content security policy and standard meta tags

This commit is contained in:
hippoz 2022-08-05 02:11:26 +03:00
parent 24a956c940
commit f5aeedfbab
Signed by: hippoz
GPG key ID: 7C52899193467641

View file

@ -1,18 +1,22 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset='utf-8'> <meta charset="utf-8">
<meta name='viewport' content='width=device-width,height=device-height,initial-scale=1'> <meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,viewport-fit=contain">
<meta name="application-name" content="Waffle">
<meta name="description" content="Waffle - the free, open and focused chat application that runs on *your* server.">
<meta name="same-origin" content="same-origin">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline';">
<title>app</title> <title>app</title>
<link rel='stylesheet' href='/global.css'> <link rel="stylesheet" href="/global.css">
<link rel='stylesheet' href='/build/bundle.css'> <link rel="stylesheet" href="/build/bundle.css">
<script defer src='/build/bundle.js'></script> <script defer src="/build/bundle.js"></script>
</head> </head>
<body> <body>
<div class="fullscreen-message" id="pre--loading-screen">heating up the crt...</div> <div class="fullscreen-message" id="pre--loading-screen">loading...</div>
</body> </body>
</html> </html>