Files
Trilium/apps/client/index.html

30 lines
1.4 KiB
HTML
Raw Normal View History

2026-01-05 11:07:40 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
2026-01-05 11:22:10 +02:00
<meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover, interactive-widget=resizes-content" />
2026-01-05 11:22:10 +02:00
<link rel="manifest" crossorigin="use-credentials" href="manifest.webmanifest">
<title>Trilium Notes</title>
2026-01-05 11:07:40 +02:00
</head>
2026-01-05 11:22:10 +02:00
<body id="trilium-app">
<noscript>Trilium requires JavaScript to be enabled.</noscript>
2026-01-05 11:22:10 +02:00
<div id="context-menu-cover"></div>
2026-01-05 11:22:10 +02:00
<div class="dropdown-menu dropdown-menu-sm" id="context-menu-container" style="display: none"></div>
<!-- Required to match the PWA's top bar color with the theme -->
2026-01-05 11:22:10 +02:00
<!-- This works even when the user directly changes --root-background in CSS -->
<div id="background-color-tracker" style="position: absolute; visibility: hidden; color: var(--root-background); transition: color 1ms;"></div>
<script src="./src/index.ts" type="module"></script>
2026-01-05 11:36:50 +02:00
2026-01-05 11:22:10 +02:00
<!-- Required for correct loading of scripts in Electron -->
<script>
if (typeof module === 'object') {window.module = module; module = undefined;}
</script>
2026-01-05 11:07:40 +02:00
</body>
</html>