diff options
author | Lucas Fryzek <lucas.fryzek@gmail.com> | 2022-11-02 18:35:40 -0400 |
---|---|---|
committer | Lucas Fryzek <lucas.fryzek@gmail.com> | 2022-11-02 18:35:40 -0400 |
commit | 1920b397fad8b1d6cd0233a5aa9a12365b16a287 (patch) | |
tree | 2b10edd83a77f59dcfdce2f3a38bea4126e06fd1 /templates/note.html |
Initial commit
Diffstat (limited to 'templates/note.html')
-rw-r--r-- | templates/note.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/note.html b/templates/note.html new file mode 100644 index 0000000..917d461 --- /dev/null +++ b/templates/note.html @@ -0,0 +1,18 @@ +<div class="page-title-header-container"> + <h1 class="page-title-header">$title$</h1> + $if(date)$ + <div class="page-info-container"> + $if(note_status)$ + $note_status$ + $endif$ + <div class="page-info-date-container"> + <p class="page-info-date">Published: $date$</p> + <p class="page-info-date">Last Edited: $last_edit$</p> + </div> + </div> + $endif$ +</div> +<div class="note-divider"></div> +<div class="note-body"> +$body$ +</div> |