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

preferences-window.html 1.3KB

    <!DOCTYPE html> <html class="no-js"> <head> <title>Codex</title> <meta charset="UTF-8"> <!-- Stylesheets --> <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>