summaryrefslogtreecommitdiff
path: root/examples/blog/src/components/BaseHead.astro
blob: 20ca692124abf7b3fd213874fc6792deb6f51027 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
import '../styles/blog.css';

export interface Props {
	title: string;
	description: string;
	permalink: string;
}
const { title, description, permalink } = Astro.props;
---

<!-- Global Metadata -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />

<!-- 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={permalink} />
<meta property="og:title" content={title} />
<meta property="og:description" content={description} />
<meta property="og:image" content="https://astro.build/social.jpg?v=1" />

<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content={permalink} />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content="https://astro.build/social.jpg?v=1" />

<!-- Fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=IBM+Plex+Sans:wght@400;700&display=swap" />
o' width='13' height='13' alt='Gravatar' /> Fred K. Bot 5-8/+9 2022-08-26Update README.mdGravatar Fred K. Schott 1-1/+1 2022-08-26Add `renderer` keyword to alpinejs integration (#4501)Gravatar Mohammed Elhaouari 2-0/+7 2022-08-26[ci] release (#4495)create-astro@1.0.1astro@1.1.0@astrojs/solid-js@1.1.0@astrojs/react@1.1.0@astrojs/mdx@0.10.2@astrojs/markdown-remark@1.1.0Gravatar Fred K. Bot 51-213/+141 2022-08-26chore: update readme to include alpine js integration (#4498)Gravatar Abdullah Mzaien 1-0/+1 2022-08-26Update astro check to use latest version of the language server (#4500)Gravatar Erika 3-50/+57 2022-08-26Vendor Vite's importMeta.d.ts inside our repo to workaround issue with `tsc` ...Gravatar Erika 3-1/+43 2022-08-26Only print file output only for 404 and 500 routes (#4497)Gravatar Ben Holmes 2-5/+9 2022-08-26[ci] formatGravatar matthewp 1-14/+9 2022-08-26chore: update to solid 1.5 (#4496)Gravatar Abdullah Mzaien 3-4/+17 2022-08-26Exit prerelease mode for 1.1 release (#4493)Gravatar Matthew Phillips 1-1/+1 2022-08-26Remove "as Props" from the astro examples (#4494)Gravatar Mohammed Elhaouari 8-8/+8 2022-08-26[ci] update lockfile (#4492)Gravatar Fred K. Bot 1-33/+41 2022-08-26Edit Alpinejs content generation for Docs (#4466)Gravatar Mark Spratt 1-6/+5 2022-08-26Note private env var handling with cloudflare builds (#4490)Gravatar Bjorn Lu 1-0/+14 2022-08-26Bump pnpm version (#4488)Gravatar Bjorn Lu 1-2/+2 2022-08-26Update blog.astro (#4486)Gravatar Peter Singh 1-2/+2 2022-08-25Earlier import snippet for `@astrojs/image` (#4484)Gravatar Tc001 1-0/+6 2022-08-25[ci] release (next) (#4480)create-astro@1.0.1-next.0astro@1.1.0-next.0@astrojs/react@1.1.0-next.0@astrojs/mdx@0.10.2-next.0@astrojs/markdown-remark@1.1.0-next.0Gravatar Fred K. Bot 38-76/+133 2022-08-25[ci] formatGravatar matthewp 2-11/+12 2022-08-25[MD] `extendDefaultPlugins` to preserve default remark plugins (#4474)Gravatar Ben Holmes 10-31/+100 2022-08-25Update Markdown type signature to match behavior (#4423)Gravatar Ben Holmes 8-15/+60 2022-08-25[ci] formatGravatar matthewp 1-2/+2 2022-08-25make Remark rehype options available in astro config (#4138)Gravatar gtnbssn 9-1/+108 2022-08-25[ci] formatGravatar matthewp 3-48/+60 2022-08-25Make Astro.url conform to build.format during the build (#4352)Gravatar Matthew Phillips 8-3/+108 2022-08-25[ci] formatGravatar matthewp 1-1/+1 2022-08-25Add template tsconfigs for users to extend from (#4439)Gravatar Erika 33-343/+119 2022-08-25Make astro package play nice with node16 module resolution (#4182)Gravatar Aleksander Heintz 5-13/+21