2017-11-02 23:26:08 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2017-11-04 15:42:20 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2019-02-24 10:17:37 +00: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 17:51:55 +00:00
|
|
|
<title>Joplin</title>
|
2024-11-08 07:32:05 -08:00
|
|
|
<!-- Note: Add new dynamic CSS imports to style.scss to allow them to be included in secondary windows. -->
|
2021-10-03 16:00:49 +01:00
|
|
|
<link rel="stylesheet" href="style.min.css">
|
2024-03-02 14:25:27 +00:00
|
|
|
<link rel="stylesheet" href="./node_modules/notyf/notyf.min.css">
|
|
|
|
|
2024-11-08 07:32:05 -08:00
|
|
|
<script src="vendor/lib/smalltalk/dist/smalltalk.min.js"></script>
|
2023-12-13 19:24:58 +00:00
|
|
|
<script src="./node_modules/tesseract.js/dist/tesseract.min.js"></script>
|
2017-11-04 15:42:20 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-11-04 19:46:37 +00:00
|
|
|
<div id="react-root"></div>
|
2024-11-08 07:32:05 -08:00
|
|
|
<script src="./utils/window/eventHandlerOverrides.js"></script>
|
2017-11-05 00:17:48 +00:00
|
|
|
<script src="main-html.js"></script>
|
2024-03-02 14:25:27 +00:00
|
|
|
<script src="./node_modules/notyf/notyf.min.js"></script>
|
2017-11-04 15:42:20 +00:00
|
|
|
</body>
|
2020-06-06 09:00:20 -06:00
|
|
|
</html>
|