index.html 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  5. <title>Project1</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="stylesheet" type="text/css" href="bulma.min.css">
  8. <script src="browser.min.js"></script>
  9. <script src="browser.dom.js"></script>
  10. <script src="demozenfs.js"></script>
  11. </head>
  12. <body>
  13. <div class="container">
  14. <div class="box">
  15. <p class="title is-3">ZenFS demo</p>
  16. <p>This page demonstrates the <a href="ZenFS">ZenFS Api</a>, a browser filesystem simulation.</p>
  17. <p>The backend is using local storage. This means that the file contents are saved across page loads.
  18. If you reload the page, you'll see that the existing files are re-read.
  19. </p>
  20. </div>
  21. <div class="box">
  22. <p class="title is-5">Program output</p>
  23. <div id="pasjsconsole"></div>
  24. </div>
  25. <footer class="footer">
  26. <div class="content has-text-centered">
  27. <p>
  28. Created using &nbsp; <a target="_blank" href="https://wiki.freepascal.org/pas2js">pas2js.</a>
  29. &nbsp;&nbsp;Sources: &nbsp; <a target="new" href="demozenfs.lpr">Program</a>
  30. </p>
  31. </div>
  32. </footer>
  33. <script>
  34. rtl.run();
  35. </script>
  36. </div>
  37. </body>
  38. </html>