mirror of
https://github.com/zadam/trilium.git
synced 2024-11-17 13:14:44 +08:00
93 lines
No EOL
3.3 KiB
Text
93 lines
No EOL
3.3 KiB
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Trilium Notes</title>
|
|
</head>
|
|
<body class="mobile">
|
|
<div class="row" id="container-row" style="display: none;">
|
|
|
|
<div id="left-pane" class="d-sm-flex d-md-flex d-lg-flex d-xl-flex col-12 col-sm-5 col-md-4 col-lg-4 col-xl-4">
|
|
<div id="global-buttons">
|
|
<a id="create-top-level-note-button" title="Create new top level note" class="icon-action jam jam-plus-circle"></a>
|
|
|
|
<a id="collapse-tree-button" title="Collapse note tree. Shortcut ALT+C" class="icon-action jam jam-layers"></a>
|
|
|
|
<a id="scroll-to-current-note-button" title="Scroll to current note. Shortcut CTRL+." class="icon-action jam jam-download"></a>
|
|
</div>
|
|
|
|
<div id="tree"></div>
|
|
</div>
|
|
|
|
<div id="detail" class="d-none d-sm-flex d-md-flex d-lg-flex d-xl-flex col-12 col-sm-7 col-md-8 col-lg-8">
|
|
<div id="note-title-row">
|
|
<button type="button" id="note-menu-button" class="action-button jam jam-align-justify"></button>
|
|
|
|
<input autocomplete="off" value="" id="note-title" class="form-control" tabindex="1">
|
|
|
|
<button type="button" id="close-detail-button" class="action-button d-sm-none d-md-none d-lg-none d-xl-none" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
|
|
<div id="detail-content">
|
|
<span id="saved-indicator" title="All changes have been saved" class="jam jam-check"></span>
|
|
|
|
<div id="note-detail-text" class="note-detail-component" tabindex="10000"></div>
|
|
|
|
<div id="note-detail-code" class="note-detail-component"></div>
|
|
|
|
<% include details/search.ejs %>
|
|
|
|
<% include details/render.ejs %>
|
|
|
|
<% include details/file.ejs %>
|
|
|
|
<% include details/image.ejs %>
|
|
|
|
<% include details/relation_map.ejs %>
|
|
|
|
<% include details/protected_session_password.ejs %>
|
|
</div>
|
|
</div>
|
|
|
|
<% include dialogs/protected_session_password.ejs %>
|
|
|
|
<div class="dropdown-menu dropdown-menu-sm" id="context-menu-container"></div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
window.baseApiUrl = 'api/';
|
|
window.device = "mobile";
|
|
window.glob = {
|
|
activeDialog: null,
|
|
sourceId: '<%= sourceId %>',
|
|
maxSyncIdAtLoad: <%= maxSyncIdAtLoad %>,
|
|
instanceName: '<%= instanceName %>'
|
|
};
|
|
</script>
|
|
|
|
<script src="libraries/jquery.min.js"></script>
|
|
|
|
<link href="libraries/fancytree/skin-win8/ui.fancytree.css" rel="stylesheet">
|
|
<script src="libraries/fancytree/jquery.fancytree-all-deps.min.js"></script>
|
|
|
|
<link href="libraries/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
<script src="libraries/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
|
|
<script src="javascripts/services/mobile.js" crossorigin type="module"></script>
|
|
|
|
<link href="stylesheets/style.css" rel="stylesheet">
|
|
<link href="stylesheets/mobile.css" rel="stylesheet">
|
|
|
|
<script src="libraries/bootstrap-notify.min.js"></script>
|
|
|
|
<link rel="stylesheet" type="text/css" href="libraries/jam/css/jam.min.css">
|
|
|
|
<script type="text/javascript">
|
|
// we hide container initally because otherwise it is rendered first without CSS and then flickers into
|
|
// final form which is pretty ugly.
|
|
$("#container-row").show();
|
|
</script>
|
|
</body>
|
|
</html> |