2017-11-03 01:26:08 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2017-11-04 17:42:20 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2019-02-24 12:17:37 +02:00
|
|
|
<!--
|
|
|
|
No CPS because we need to allow everything due to some dependencies (eg. depd, which comes from maybe Node or Electron
|
|
|
|
uses 'eval'.
|
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' 'unsafe-eval'">
|
|
|
|
-->
|
2017-11-08 19:51:55 +02:00
|
|
|
<title>Joplin</title>
|
2024-11-08 17:32:05 +02:00
|
|
|
<!-- Note: Add new dynamic CSS imports to style.scss to allow them to be included in secondary windows. -->
|
2021-10-03 17:00:49 +02:00
|
|
|
<link rel="stylesheet" href="style.min.css">
|
2024-03-02 16:25:27 +02:00
|
|
|
<link rel="stylesheet" href="./node_modules/notyf/notyf.min.css">
|
|
|
|
|
2024-11-08 17:32:05 +02:00
|
|
|
<script src="vendor/lib/smalltalk/dist/smalltalk.min.js"></script>
|
2023-12-13 21:24:58 +02:00
|
|
|
<script src="./node_modules/tesseract.js/dist/tesseract.min.js"></script>
|
2017-11-04 17:42:20 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-11-04 21:46:37 +02:00
|
|
|
<div id="react-root"></div>
|
2024-11-08 17:32:05 +02:00
|
|
|
<script src="./utils/window/eventHandlerOverrides.js"></script>
|
2017-11-05 02:17:48 +02:00
|
|
|
<script src="main-html.js"></script>
|
2024-03-02 16:25:27 +02:00
|
|
|
<script src="./node_modules/notyf/notyf.min.js"></script>
|
2017-11-04 17:42:20 +02:00
|
|
|
</body>
|
2020-06-06 17:00:20 +02:00
|
|
|
</html>
|