diff options
| author | winter | 2024-12-24 00:13:29 +0000 |
|---|---|---|
| committer | winter | 2024-12-24 00:13:29 +0000 |
| commit | e7e237dacaf7bbaa739c7e9a430958aed09aa647 (patch) | |
| tree | cc18c4715128bde2863ad9d54a6025fdb097d539 /templates/note.php | |
| parent | 26c37ebbdc58c6089741230f0b723b0ff507aa57 (diff) | |
add interaction buttons (they dont do anything)
Diffstat (limited to 'templates/note.php')
| -rw-r--r-- | templates/note.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/note.php b/templates/note.php index 4f11d83..31795e4 100644 --- a/templates/note.php +++ b/templates/note.php @@ -19,5 +19,10 @@ <div class="content"> <?= $note->getFormattedContent('text/html') ?? htmlspecialchars($note->plainContent) ?> </div> + <div class="buttons"> + <button title="Like" class="icon material-symbols-outlined">favorite</button> + <button title="Dislike" class="icon material-symbols-outlined">heart_broken</button> + <button title="Reshare" class="icon material-symbols-outlined">repeat</button> + </div> </div> </article>
\ No newline at end of file |
