Skip to content

Instantly share code, notes, and snippets.

@Klerith
Created July 10, 2024 19:39
Show Gist options
  • Save Klerith/f8c91469d8e437c945a6bb040f7d4e82 to your computer and use it in GitHub Desktop.
Save Klerith/f8c91469d8e437c945a6bb040f7d4e82 to your computer and use it in GitHub Desktop.
Meta tags necesarias
<!-- Meta tags -->
<meta name="title" content={title} />
<meta name="description" content={description} />
<!-- Open Graph / Facebook -->
<meta property="og:title" content={title} />
<meta property="og:url" content={Astro.url} />
<meta property="og:description" content={description} />
<meta property="og:type" content="website" />
<meta property="og:image" content={image} />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content={Astro.url} />
<meta property="twitter:title" content={title} />
<meta property="twitter:description" content={description} />
<meta property="twitter:image" content={image} />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment