21 lines
638 B
Plaintext
21 lines
638 B
Plaintext
|
extends ../../../../src/client/app/base
|
||
|
|
||
|
block vars
|
||
|
- const user = note.user;
|
||
|
- const title = user.name ? `${user.name} (@${user.username})` : `@${user.username}`;
|
||
|
- const url = `${config.url}/notes/${note.id}`;
|
||
|
- const img = user.avatarId ? `${config.drive_url}/${user.avatarId}` : null;
|
||
|
|
||
|
block title
|
||
|
= `${title} | Misskey`
|
||
|
|
||
|
block desc
|
||
|
meta(name='description' content= summary)
|
||
|
|
||
|
block meta
|
||
|
meta(name='twitter:card' content='summary')
|
||
|
meta(property='og:title' content= title)
|
||
|
meta(property='og:description' content= summary)
|
||
|
meta(property='og:url' content= url)
|
||
|
meta(property='og:image' content= img)
|