Skip to content

Instantly share code, notes, and snippets.

@wolz-CODElife
Created July 1, 2022 10:38
Show Gist options
  • Save wolz-CODElife/ccaf701662b45fc212f9b24d17682171 to your computer and use it in GitHub Desktop.
Save wolz-CODElife/ccaf701662b45fc212f9b24d17682171 to your computer and use it in GitHub Desktop.
Meta tags/SEO config HTML snippets
<head>
<meta charset="utf-8" />
<link rel="icon" href="{{IMAGE_URL/IMAGE_PATH}}" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no">
<meta name="theme-color" content="{{SITE_THEME_COLOR}}" />
<meta name="description" content="{{SITE_DESCRIPTION}}" />
<meta property="og:description" content="{{SITE_DESCRIPTION}}" />
<meta data-react-helmet="true" property="og:title" content="{{SITE_TITLE}}">
<meta data-react-helmet="true" property="og:type" content="Website">
<meta data-react-helmet="true" property="og:url" content="{{SITE_URL}}">
<meta data-react-helmet="true" name="twitter:card" content="summary">
<meta data-react-helmet="true" name="twitter:description" content="{{SITE_DESCRIPTION}}">
<meta data-react-helmet="true" name="twitter:title" content="{{SITE_TITLE}}">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="apple-touch-icon" href="{{IMAGE_URL/IMAGE_PATH}}" />
<title>{{SITE_TITLE}}</title>
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment