12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <html class="no-js">
- <head>
- <title>Codex</title>
- <meta charset="UTF-8">
-
- <link rel="stylesheet" href="../css/tomorrow-night-eighties.css">
- <link rel="stylesheet" href="../css/photon.min.css">
- <link rel="stylesheet" href="../css/codex.css">
- <script>
- var remote = require('remote');
- var ipc = require('ipc');
- var dialog = remote.require('dialog');
- </script>
- </head>
- <body>
- <header class="toolbar toolbar-header">
- <h1 class="title">Preferences</h1>
- <ul class="icon-tabs">
- <li class="active">
- <img src="content/imgs/prefs-icon.png" style="width: 32px; height: 32px;"><br>General
- </li>
- <li>
- <img src="content/imgs/db-icon.png" style="width: 32px; height: 32px;"><br>Databases
- </li>
- </ul>
- </header>
- <div class="well">
- <p>Default View when opening the app:<br>
- <select class="form-control" style="width: 220px;">
- <option>All Notes</option>
- <option>All Files</option>
- <option>Index note</option>
- </select></p>
- <p>Default Notebook:
- <select class="form-control" style="width: 220px;">
- <option>Notebook 1</option>
- <option>Notebook 2</option>
- <option>Notebook 3</option>
- </select></p>
- </div>
- </body>
- </html>
|