1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/app-desktop/index.html

25 lines
934 B
HTML
Raw Normal View History

2017-11-03 01:26:08 +02:00
<!DOCTYPE html>
<html>
<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>
<!-- 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 21:24:58 +02: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>