index.html 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Excalidraw | Hand-drawn look & feel • Collaborative • Secure</title>
  6. <meta
  7. name="viewport"
  8. content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover, shrink-to-fit=no"
  9. />
  10. <meta name="referrer" content="origin" />
  11. <meta name="mobile-web-app-capable" content="yes" />
  12. <meta name="theme-color" content="#000" />
  13. <!-- General tags -->
  14. <meta
  15. name="description"
  16. content="Excalidraw is a virtual collaborative whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  17. />
  18. <meta name="image" content="og-image.png" />
  19. <!-- OpenGraph tags -->
  20. <meta property="og:url" content="https://excalidraw.com" />
  21. <meta property="og:site_name" content="Excalidraw" />
  22. <meta property="og:type" content="website" />
  23. <meta property="og:title" content="Excalidraw" />
  24. <meta
  25. property="og:description"
  26. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  27. />
  28. <!-- OG tags require an absolute url for images -->
  29. <meta
  30. property="og:image"
  31. name="twitter:image"
  32. content="https://excalidraw.com/og-image.png"
  33. />
  34. <meta
  35. property="og:image:secure_url"
  36. name="twitter:image"
  37. content="https://excalidraw.com/og-image.png"
  38. />
  39. <meta property="og:image:width" content="1280" />
  40. <meta property="og:image:height" content="669" />
  41. <meta property="og:image:alt" content="Excalidraw logo with byline." />
  42. <!-- Twitter Card tags -->
  43. <meta name="twitter:card" content="summary_large_image" />
  44. <meta name="twitter:title" content="Excalidraw" />
  45. <meta
  46. name="twitter:description"
  47. content="Excalidraw is a whiteboard tool that lets you easily sketch diagrams that have a hand-drawn feel to them."
  48. />
  49. <script>
  50. // Redirect Excalidraw+ users which have auto-redirect enabled.
  51. //
  52. // Redirect only the bare root path, so link/room/library urls are not
  53. // redirected.
  54. //
  55. // Putting into index.html for best performance (can't redirect on server
  56. // due to location.hash checks).
  57. if (
  58. window.location.pathname === "/" &&
  59. !window.location.hash &&
  60. !window.location.search &&
  61. // if its present redirect
  62. document.cookie.includes("excplus-autoredirect=true")
  63. ) {
  64. window.location.href = "https://app.excalidraw.com";
  65. }
  66. </script>
  67. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  68. <!-- Excalidraw version -->
  69. <meta name="version" content="{version}" />
  70. <link
  71. rel="preload"
  72. href="Virgil.woff2"
  73. as="font"
  74. type="font/woff2"
  75. crossorigin="anonymous"
  76. />
  77. <link
  78. rel="preload"
  79. href="Cascadia.woff2"
  80. as="font"
  81. type="font/woff2"
  82. crossorigin="anonymous"
  83. />
  84. <link
  85. rel="manifest"
  86. href="manifest.json"
  87. style="--pwacompat-splash-font: 24px Virgil"
  88. />
  89. <link rel="stylesheet" href="fonts.css" type="text/css" />
  90. <% if (process.env.REACT_APP_DEV_DISABLE_LIVE_RELOAD === "true") { %>
  91. <script>
  92. {
  93. const _WebSocket = window.WebSocket;
  94. window.WebSocket = function (url) {
  95. if (/ws:\/\/localhost:.+?\/sockjs-node/.test(url)) {
  96. console.info(
  97. "[!!!] Live reload is disabled via process.env.REACT_APP_DEV_DISABLE_LIVE_RELOAD [!!!]",
  98. );
  99. } else {
  100. return new _WebSocket(url);
  101. }
  102. };
  103. }
  104. </script>
  105. <% } %>
  106. <script>
  107. window.EXCALIDRAW_ASSET_PATH = "/";
  108. // setting this so that libraries installation reuses this window tab.
  109. window.name = "_excalidraw";
  110. </script>
  111. <% if (process.env.REACT_APP_GOOGLE_ANALYTICS_ID) { %>
  112. <script
  113. async
  114. src="https://www.googletagmanager.com/gtag/js?id=%REACT_APP_GOOGLE_ANALYTICS_ID%"
  115. ></script>
  116. <script>
  117. window.dataLayer = window.dataLayer || [];
  118. function gtag() {
  119. dataLayer.push(arguments);
  120. }
  121. gtag("js", new Date());
  122. gtag("config", "%REACT_APP_GOOGLE_ANALYTICS_ID%");
  123. </script>
  124. <% } %>
  125. <!-- FIXME: remove this when we update CRA (fix SW caching) -->
  126. <style>
  127. body,
  128. html {
  129. margin: 0;
  130. --ui-font: system-ui, BlinkMacSystemFont, -apple-system, Segoe UI,
  131. Roboto, Helvetica, Arial, sans-serif;
  132. font-family: var(--ui-font);
  133. -webkit-text-size-adjust: 100%;
  134. width: 100%;
  135. height: 100%;
  136. overflow: hidden;
  137. }
  138. .visually-hidden {
  139. position: absolute !important;
  140. height: 1px;
  141. width: 1px;
  142. overflow: hidden;
  143. clip: rect(1px, 1px, 1px, 1px);
  144. white-space: nowrap; /* added line */
  145. user-select: none;
  146. }
  147. #root {
  148. height: 100%;
  149. -webkit-touch-callout: none;
  150. -webkit-user-select: none;
  151. -khtml-user-select: none;
  152. -moz-user-select: none;
  153. -ms-user-select: none;
  154. user-select: none;
  155. }
  156. @media screen and (min-width: 1200px) {
  157. #root {
  158. -webkit-touch-callout: default;
  159. -webkit-user-select: auto;
  160. -khtml-user-select: auto;
  161. -moz-user-select: auto;
  162. -ms-user-select: auto;
  163. user-select: auto;
  164. }
  165. }
  166. </style>
  167. </head>
  168. <body>
  169. <noscript> You need to enable JavaScript to run this app. </noscript>
  170. <header>
  171. <h1 class="visually-hidden">Excalidraw</h1>
  172. </header>
  173. <div id="root"></div>
  174. </body>
  175. </html>