22 lines
668 B
HTML
22 lines
668 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Daily Bookmarks</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="assets/app-icon-64.png">
|
|
<script>
|
|
(function redirectToShell() {
|
|
const url = new URL(window.location.href);
|
|
const params = new URLSearchParams(url.search);
|
|
params.set('view', 'daily-bookmarks');
|
|
const target = `index.html${params.toString() ? `?${params}` : ''}${url.hash}`;
|
|
window.location.replace(target);
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>Weiterleitung zu Daily Bookmarks…</p>
|
|
</body>
|
|
</html>
|