add content security policy and standard meta tags
This commit is contained in:
parent
24a956c940
commit
f5aeedfbab
1 changed files with 10 additions and 6 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue