Skip to content

Instantly share code, notes, and snippets.

@druellan
Created December 29, 2015 16:56
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save druellan/7242ca7d50afa449c389 to your computer and use it in GitHub Desktop.
Save druellan/7242ca7d50afa449c389 to your computer and use it in GitHub Desktop.
Basic template for OpenGraph/Facebook metatags
<html prefix="og: http://ogp.me/ns#">
<head>
<title>The Title</title> <!-- ˜60 chars -->
<meta name="description" content="The Description"> <!-- ˜150 chars -->
<meta property="og:title" content="The Title">
<meta property="og:description" content="The Description"> <!-- ˜300 chars -->
<meta property="og:site_name" content="Sfida Blog">
<meta property="og:locale" content="es_AR">
<meta property="og:type" content="website">
<meta property="og:url" content="http://www.sfidastudios.com">
<meta property="og:image" content="http://www.sfidastudios.com/logo.png"> <!-- 200x200px - 1200x1200px -->
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment