Skip to content

Instantly share code, notes, and snippets.

View druellan's full-sized avatar

Dario Ruellan druellan

View GitHub Profile
@druellan
druellan / twittercards.template.html
Last active December 29, 2015 17:05
Basic template for Twitter Cards (metatags)
<html>
<head>
<title>The Title</title> <!-- ˜60 chars -->
<meta name="description" content="The Description"> <!-- ˜150 chars -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@sfidastudios">
<meta name="twitter:title" content="The Title"> <!-- ˜70 chars -->
<meta name="twitter:description" content="The Description"> <!-- ˜200 chars -->
<meta name="twitter:image" content="http://www.sfidastudios.com/logo.png"> <!-- 120x120px - 280x150px -->
</head>
@druellan
druellan / opengraph.template.html
Created December 29, 2015 16:56
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">