Desktop markdown wiki app. Built with node, Electron Framework and AngularJS.

preferences-window.html 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html class="no-js">
  3. <head>
  4. <title>Codex</title>
  5. <meta charset="UTF-8">
  6. <!-- Stylesheets -->
  7. <link rel="stylesheet" href="../css/tomorrow-night-eighties.css">
  8. <link rel="stylesheet" href="../css/photon.min.css">
  9. <link rel="stylesheet" href="../css/codex.css">
  10. <script>
  11. var remote = require('remote');
  12. var ipc = require('ipc');
  13. var dialog = remote.require('dialog');
  14. </script>
  15. </head>
  16. <body>
  17. <header class="toolbar toolbar-header">
  18. <h1 class="title">Preferences</h1>
  19. <ul class="icon-tabs">
  20. <li class="active">
  21. <img src="content/imgs/prefs-icon.png" style="width: 32px; height: 32px;"><br>General
  22. </li>
  23. <li>
  24. <img src="content/imgs/db-icon.png" style="width: 32px; height: 32px;"><br>Databases
  25. </li>
  26. </ul>
  27. </header>
  28. <div class="well">
  29. <p>Default View when opening the app:<br>
  30. <select class="form-control" style="width: 220px;">
  31. <option>All Notes</option>
  32. <option>All Files</option>
  33. <option>Index note</option>
  34. </select></p>
  35. <p>Default Notebook:
  36. <select class="form-control" style="width: 220px;">
  37. <option>Notebook 1</option>
  38. <option>Notebook 2</option>
  39. <option>Notebook 3</option>
  40. </select></p>
  41. </div>
  42. </body>
  43. </html>