2025-10-18 20:15:28 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<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" />
|
2025-10-18 20:23:17 +03:00
|
|
|
<link rel="manifest" crossorigin="use-credentials" href="../manifest.webmanifest">
|
2025-10-18 20:15:28 +03:00
|
|
|
<title>Trilium Notes</title>
|
2025-10-18 20:23:17 +03:00
|
|
|
<script src="../<%= appPath %>/runtime.js" crossorigin type="module"></script>
|
2025-10-18 20:15:28 +03:00
|
|
|
</head>
|
|
|
|
|
<body
|
|
|
|
|
id="trilium-print"
|
|
|
|
|
lang="<%= currentLocale.id %>" dir="<%= currentLocale.rtl ? 'rtl' : 'ltr' %>"
|
|
|
|
|
>
|
|
|
|
|
<noscript><%= t("javascript-required") %></noscript>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
// hide body to reduce flickering on the startup. This is done through JS and not CSS to not hide <noscript>
|
|
|
|
|
document.getElementsByTagName("body")[0].style.display = "none";
|
|
|
|
|
</script>
|
|
|
|
|
|
2025-10-18 21:01:31 +03:00
|
|
|
<%- include("./partials/windowGlobal.ejs", locals) %>
|
|
|
|
|
|
2025-10-18 20:15:28 +03:00
|
|
|
<!-- Required for correct loading of scripts in Electron -->
|
|
|
|
|
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
|
|
|
|
|
|
2025-10-18 20:23:17 +03:00
|
|
|
<script src="../<%= appPath %>/print.js" crossorigin type="module"></script>
|
2025-10-18 20:15:28 +03:00
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|