From df5ead7bd4adac405811b91fed1e5f0b3775206b Mon Sep 17 00:00:00 2001 From: winter Date: Sun, 26 Jan 2025 17:23:11 +0000 Subject: add link preview metadata --- templates/thread_page.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'templates/thread_page.php') diff --git a/templates/thread_page.php b/templates/thread_page.php index 119f879..b46c968 100644 --- a/templates/thread_page.php +++ b/templates/thread_page.php @@ -4,7 +4,12 @@ use Digitigrade\Model\UserAccount; call_template('skeleton', [ 'pageTitle' => '"' . $note->plainContent . '" - @' . $note->author->getFullHandle(), - 'renderTitleHeading' => false + 'renderTitleHeading' => false, + 'ogTitle' => $note->author->displayName, + 'ogDesc' => $note->plainContent, + 'ogImage' => $note->author->avatar ?? path_to_uri('/static/default-avatar.png'), + 'ogType' => 'article', + 'ogHandle' => '@' . $note->author->getFullHandle(true) ], function () { global $note; $notes = Note::findAllInThread($note->threadApex ?? $note); -- cgit v1.3