Files
PostTracker/web/posts.html
2025-11-16 13:44:11 +01:00

23 lines
698 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>