diff options
Diffstat (limited to 'templates/thread_page.php')
| -rw-r--r-- | templates/thread_page.php | 7 |
1 files changed, 6 insertions, 1 deletions
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); |
