mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 10:13:09 +02:00
20 lines
678 B
Text
20 lines
678 B
Text
|
extends ../../../../src/client/app/base
|
||
|
|
||
|
block vars
|
||
|
- const title = user.name ? `${user.name} (@${user.username})` : `@${user.username}`;
|
||
|
- const url = config.url + '/@' + (user.host ? `${user.username}@${user.host}` : user.username);
|
||
|
- const img = user.avatarId ? `${config.drive_url}/${user.avatarId}` : null;
|
||
|
|
||
|
block title
|
||
|
= `${title} | Misskey`
|
||
|
|
||
|
block desc
|
||
|
meta(name='description' content= user.description)
|
||
|
|
||
|
block meta
|
||
|
meta(name='twitter:card' content='summary')
|
||
|
meta(property='og:title' content= title)
|
||
|
meta(property='og:description' content= user.description)
|
||
|
meta(property='og:url' content= url)
|
||
|
meta(property='og:image' content= img)
|