mirror of
https://github.com/logseq/logseq.git
synced 2026-05-02 09:56:31 +00:00
25 lines
784 B
HTML
25 lines
784 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta
|
|
name="viewport"
|
|
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
|
|
/>
|
|
<link rel="stylesheet" href="css/style.css" type="text/css">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
|
|
<title>Gitnotes</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="https://unpkg.com/@isomorphic-git/lightning-fs"></script>
|
|
<script src="https://unpkg.com/isomorphic-git"></script>
|
|
<script>
|
|
window.fs = new LightningFS('gitnotes')
|
|
git.plugins.set('fs', window.fs)
|
|
window.pfs = window.fs.promises
|
|
</script>
|
|
<script src="/js/main.js"></script>
|
|
</body>
|
|
</html>
|