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 | |
| parent | 26c37ebbdc58c6089741230f0b723b0ff507aa57 (diff) | |
add interaction buttons (they dont do anything)
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/note.php | 5 | ||||
| -rw-r--r-- | templates/skeleton.php | 2 |
2 files changed, 7 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 diff --git a/templates/skeleton.php b/templates/skeleton.php index 8ed04ee..9cc4636 100644 --- a/templates/skeleton.php +++ b/templates/skeleton.php @@ -4,6 +4,8 @@ <head> <title><?= $pageTitle ?></title> <link rel="stylesheet" href="/static/style.css"> + <link rel="stylesheet" href="https://fonts.bunny.net/css?family=dm-sans:400,400i,800,800i"> + <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:FILL@0..1"> <meta name="viewport" content="width=device-width, initial-scale=1"> <script src="https://unpkg.com/htmx.org@2.0.4"></script> </head> |
