mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 15:31:11 +01:00
8f8e677630
- Return all images as og:image - Return videos as og:image (preview) and og:video - Return profile:username on profiles
9 lines
447 B
Text
9 lines
447 B
Text
= opengraph 'og:url', url
|
|
= opengraph 'og:site_name', site_title
|
|
= opengraph 'og:title', [yield(:page_title).strip.presence, site_title].compact.join(' - ')
|
|
= opengraph 'og:description', account.note
|
|
= opengraph 'og:image', full_asset_url(account.avatar.url(:original))
|
|
= opengraph 'og:image:width', '120'
|
|
= opengraph 'og:image:height', '120'
|
|
= opengraph 'twitter:card', 'summary'
|
|
= opengraph 'profile:username', account.local_username_and_domain
|