mirror of
https://github.com/defnull/fediwall.git
synced 2024-11-21 23:23:14 +01:00
70a5034874
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.
18 lines
581 B
HTML
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>
|