astro/examples/blog/src/components/BaseHead.astro

39 lines
1.3 KiB
Text
Raw Normal View History

2021-06-28 22:29:16 +00:00
---
// Import the global.css file here so that it is included on
// all pages through the use of the <BaseHead /> component.
import '../styles/global.css';
2021-06-28 22:29:16 +00:00
export interface Props {
2021-12-22 21:11:05 +00:00
title: string;
description: string;
image?: string;
2021-06-28 22:29:16 +00:00
}
const { title, description, image = '/placeholder-social.jpg' } = Astro.props;
2021-06-28 22:29:16 +00:00
---
2021-08-16 21:34:08 +00:00
<!-- Global Metadata -->
2021-06-28 22:29:16 +00:00
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="icon" type="image/svg+xml" href="/astro.svg" />
<meta name="generator" content={Astro.generator} />
2021-06-28 22:29:16 +00:00
<!-- Primary Meta Tags -->
<title>{title}</title>
<meta name="title" content={title} />
<meta name="description" content={description} />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content={Astro.url} />
2021-06-28 22:29:16 +00:00
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:image" content={new URL(image, Astro.url)} />
2021-06-28 22:29:16 +00:00
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content={Astro.url} />
2021-06-28 22:29:16 +00:00
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={new URL(image, Astro.url)} />