fediwall/index.html
Marcel Hellkamp 70a5034874 Do not send full referrers.
Wall configuration is part of the URL and may contain details that should not be sent to other servers. We still want to be honest about the source of e.g. API requests or media traffic.
2024-02-12 19:53:33 +01:00

18 lines
581 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel='shortcut icon' type='image/png' href='/favicon.png'>
<link rel='shortcut icon' type='image/svg+xml' href='/favicon.svg'>
<link rel='shortcut icon' type='image/vnd.microsoft.icon' href='/favicon.ico'>
<meta name="referrer" content="origin-when-cross-origin" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fediwall</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>