share improvements

This commit is contained in:
zadam 2021-12-28 13:40:51 +01:00
parent d97e454463
commit fada3fe623
2 changed files with 12 additions and 8 deletions

View file

@ -32,15 +32,18 @@ body {
#main {
flex-basis: 0;
flex-grow: 3;
overflow: auto;
padding: 10px 20px 20px 20px;
}
#parent-link {
float: right;
margin-top: 20px;
}
#title {
margin: 0;
padding: 20px 20px 0 20px;
}
#content {
padding: 20px;
padding-top: 10px;
}
img {
@ -107,6 +110,7 @@ iframe.pdf-view {
display: inline-flex;
flex-wrap: wrap;
padding: 0;
margin-top: 5px;
}
#child-links.list ul li {

View file

@ -19,19 +19,19 @@
<body>
<div id="layout">
<div id="main">
<br>
<% if (note.parents[0].noteId !== 'share' && note.parents.length !== 0) { %>
<nav id="parent-link">
Parent note: <a href="<%= note.parents[0].noteId %>" class="type-<% note.type %>"><%= note.parents[0].title %></a>
parent: <a href="<%= note.parents[0].noteId %>" class="type-<% note.type %>"><%= note.parents[0].title %></a>
</nav>
<% } %>
<h1 id="title"><%= note.title %></h1>
<% if (note.type === 'book') { %>
<% } else if (isEmpty) { %>
<p>This note has no content.</p>
<% } else { %>
<div id="content" class="type-<%= note.type %><% if (note.type === 'text') { %>ck-content<% } %>">
<div id="content" class="type-<%= note.type %><% if (note.type === 'text') { %> ck-content<% } %>">
<%- content %>
</div>
<% } %>