astro-ghostcms/.pnpm-store/v3/files/0d/386d770dc6d8c225c511f73e843...

12 lines
529 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
---
const { image } = Astro.props.openGraph.basic;
const { secureUrl, type, width, height, alt } = Astro.props.openGraph.image;
---
<meta property="og:image:url" content={image} />
{secureUrl ? <meta property="og:image:secure_url" content={secureUrl} /> : null}
{type ? <meta property="og:image:type" content={type} /> : null}
{width ? <meta property="og:image:width" content={width} /> : null}
{height ? <meta property="og:image:height" content={height} /> : null}
{alt ? <meta property="og:image:alt" content={alt} /> : null}