File size: 1,158 Bytes
561e6f0 5ad12dd 561e6f0 08e4c7a 1e2f7dc 76fc93a 561e6f0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | <!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--
Opt out of browser in-page translation. The editor chrome is
English, and translating it mid-demo would rewrite slash-menu
labels, toolbar tooltips, and the document body - which would
corrupt the Yjs state. These metas silence the "Translate to X?"
prompt on non-English OS locales (Chrome reads the `google` tag,
other engines read `robots`).
-->
<meta name="google" content="notranslate" />
<meta name="robots" content="notranslate" />
<title>Research Article Template Editor</title>
<script>
(function() {
try {
var saved = localStorage.getItem('theme');
if (saved) {
document.documentElement.setAttribute('data-theme', saved);
} else {
localStorage.setItem('theme', 'dark');
}
} catch(e) {}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
|