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>
|
2017-11-04 16:40:34 +00:00
|
|
|
<link rel="stylesheet" href="style.css">
|
2018-06-14 09:02:01 +01:00
|
|
|
<link rel="stylesheet" href="css/fork-awesome.min.css">
|
2017-11-27 22:50:46 +00:00
|
|
|
<link rel="stylesheet" href="node_modules/react-datetime/css/react-datetime.css">
|
2017-12-24 09:36:31 +01:00
|
|
|
<link rel="stylesheet" href="node_modules/smalltalk/css/smalltalk.css">
|
|
|
|
<style>
|
|
|
|
.smalltalk {
|
|
|
|
background-color: rgba(0,0,0,.5);
|
|
|
|
}
|
|
|
|
.smalltalk input {
|
|
|
|
margin-top: 1em;
|
|
|
|
}
|
|
|
|
.smalltalk .page {
|
|
|
|
max-width: 30em;
|
|
|
|
}
|
2018-03-19 23:04:48 +00:00
|
|
|
mark {
|
|
|
|
background: #CF3F00;
|
|
|
|
color: white;
|
|
|
|
}
|
2017-12-24 09:36:31 +01:00
|
|
|
</style>
|
2017-11-04 15:42:20 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2017-11-04 19:46:37 +00:00
|
|
|
<div id="react-root"></div>
|
2017-11-05 00:17:48 +00:00
|
|
|
<script src="main-html.js"></script>
|
2017-11-21 19:31:21 +00:00
|
|
|
<style>
|
|
|
|
/* Disable dragging of links (which are often buttons) */
|
|
|
|
a:not([draggable=true]), img:not([draggable=true]) {
|
|
|
|
-webkit-user-drag: none;
|
|
|
|
user-drag: none;
|
|
|
|
}
|
|
|
|
</style>
|
2017-11-04 15:42:20 +00:00
|
|
|
</body>
|
2017-11-08 17:51:55 +00:00
|
|
|
</html>
|