Skip to content

Instantly share code, notes, and snippets.

@assafmo
Last active March 28, 2024 15:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save assafmo/b7b00a1dec04292eafa613df073f921e to your computer and use it in GitHub Desktop.
Save assafmo/b7b00a1dec04292eafa613df073f921e to your computer and use it in GitHub Desktop.
SEO
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO Title -->
<meta name="application-name" content="$SHORT_TITLE" />
<meta name="title" content="$TITLE" />
<meta name="twitter:title" content="$TITLE" />
<meta property="og:title" content="$TITLE" />
<!-- SEO Description -->
<meta name="description" content="$DESCRIPTION" />
<meta name="twitter:description" content="$DESCRIPTION" />
<meta property="og:description" content="$DESCRIPTION" />
<!-- SEO Image -->
<meta name="twitter:image" content="$PREVIEW_IMAGE_URL" />
<meta property="og:image" content="$PREVIEW_IMAGE_URL" />
<!-- SEO Twitter -->
<meta name="twitter:card" content="summary_large_image OR summary" />
<meta name="twitter:site" content="@$TWITTER_HANDLE" />
<meta name="twitter:creator" content="@$TWITTER_HANDLE" />
<!-- SEO Facebook/Telegram -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="$NAME" />
<meta property="og:url" content="$WEBSITE_URL" />
<meta property="og:locale" content="en_US" />
<title>$TITLE</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
User-Agent: *
User-agent: facebookexternalhit
Disallow:
User-agent: Twitterbot
Disallow:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment