1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-23 18:53:36 +02:00

25 lines
934 B
HTML
Raw Normal View History

2017-11-02 23:26:08 +00:00
<!DOCTYPE html>
<html>
<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>
<!-- Note: Add new dynamic CSS imports to style.scss to allow them to be included in secondary windows. -->
<link rel="stylesheet" href="style.min.css">
<link rel="stylesheet" href="./node_modules/notyf/notyf.min.css">
<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>
</head>
<body>
<div id="react-root"></div>
<script src="./utils/window/eventHandlerOverrides.js"></script>
<script src="main-html.js"></script>
<script src="./node_modules/notyf/notyf.min.js"></script>
</body>
</html>