index.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <!-- Handle iOS indexedDB preloading. Ref: https://developer.apple.com/forums/thread/681201 -->
  6. <script type="text/javascript">
  7. window.indexedDB;
  8. </script>
  9. <meta content="minimum-scale=1, initial-scale=1, maximum-scale=1, width=device-width, shrink-to-fit=no" name="viewport">
  10. <link rel="stylesheet" href="/static/css/tabler-icons.min.css">
  11. <link href="/static/css/style.css" rel="stylesheet" type="text/css">
  12. <link href="/static/img/logo.png" rel="shortcut icon" type="image/png">
  13. <link href="/static/img/logo.png" rel="shortcut icon" sizes="192x192">
  14. <link href="/static/img/logo.png" rel="apple-touch-icon">
  15. <meta content="Logseq" name="apple-mobile-web-app-title">
  16. <meta content="yes" name="apple-mobile-web-app-capable">
  17. <meta content="yes" name="apple-touch-fullscreen">
  18. <meta content="black-translucent" name="apple-mobile-web-app-status-bar-style">
  19. <meta content="yes" name="mobile-web-app-capable">
  20. <meta content="summary" name="twitter:card">
  21. <meta content="A privacy-first, open-source platform for knowledge management and collaboration." name="twitter:description">
  22. <meta content="@logseq" name="twitter:site">
  23. <meta content="A privacy-first, open-source platform for knowledge management and collaboration." name="twitter:title">
  24. <meta content="https://asset.logseq.com/static/img/logo.png" name="twitter:image:src">
  25. <meta content="A privacy-first, open-source platform for knowledge management and collaboration." name="twitter:image:alt">
  26. <meta content="A privacy-first, open-source platform for knowledge management and collaboration." property="og:title">
  27. <meta content="site" property="og:type">
  28. <meta content="https://logseq.com" property="og:url">
  29. <meta content="https://asset.logseq.com/static/img/logo.png" property="og:image">
  30. <meta content="A privacy-first, open-source platform for knowledge management and collaboration." property="og:description">
  31. <title>Logseq: "A privacy-first platform for knowledge management and collaboration."</title>
  32. <meta content="logseq" property="og:site_name">
  33. <meta content="A privacy-first, open-source platform for knowledge management and collaboration." name="description">
  34. </head>
  35. <body>
  36. <div id="root"></div>
  37. <script>window.user = null</script>
  38. <script>window.__LSP__HOST__ = true</script>
  39. <script src="/static/js/magic_portal.js"></script>
  40. <script>let worker = new Worker('/static/js/worker.js')
  41. const portal = new MagicPortal(worker);
  42. (async () => {
  43. const fs = await portal.get('fs')
  44. window.fs = fs
  45. const pfs = await portal.get('pfs')
  46. window.pfs = pfs
  47. const workerThread = await portal.get('workerThread')
  48. window.workerThread = workerThread
  49. })()
  50. </script>
  51. <script defer src="/static/js/highlight.min.js"></script>
  52. <script defer src="/static/js/interact.min.js"></script>
  53. <script defer src="/static/js/main.js"></script>
  54. <script defer src="/static/js/tabler.min.js"></script>
  55. <script defer src="/static/js/code-editor.js"></script>
  56. <script defer src="/static/js/tldraw.js"></script>
  57. <script defer src="/static/js/excalidraw.js"></script>
  58. </body>
  59. </html>