23 lines
698 B
HTML
23 lines
698 B
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Beiträge – Post Tracker</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', 'posts');
|
||
const query = params.toString();
|
||
const target = `index.html${query ? `?${query}` : ''}${url.hash}`;
|
||
window.location.replace(target);
|
||
})();
|
||
</script>
|
||
</head>
|
||
<body>
|
||
<p>Weiterleitung zur Beiträge-Ansicht…</p>
|
||
</body>
|
||
</html>
|