Created
February 21, 2014 14:21
-
-
Save epicmonkeez/9135113 to your computer and use it in GitHub Desktop.
Starter HTML template + excessive meta tags
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7 oldie" lang="en"><![endif]--> | |
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8 oldie" lang="en"><![endif]--> | |
<!--[if IE 8]><html class="no-js lt-ie9 oldie" lang="en"><![endif]--> | |
<!--[if gt IE 8]><!--><html class="no-js" lang="en"><!--<![endif]--> | |
<head> | |
<meta charset="UTF-8"/> | |
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=EDGE; chrome=1"/> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title> ... </title> | |
<meta name="author" content="..."/> | |
<meta name="rating" content="General"/> | |
<meta name="description" content="..."/> | |
<meta name="classification" content="business"/> | |
<meta name="copyright" content="Epic Monkeez ©"/> | |
<meta name="reply-to" content=" ... "/> | |
<meta name="revisit-after" content="21 days"/> | |
<meta name="referrer" content="default" id="meta_referrer"/> | |
<meta name="robots" content="noodp,noydir"/> | |
<!-- Prefetch stuff --> | |
<link rel="dns-prefetch" href="//www.google-analytics.com"/> | |
<link rel="dns-prefetch" href="//fonts.googleapis.com"/> | |
<link rel="dns-prefetch" href="//ajax.googleapis.com"/> | |
<!-- OpenGraph stuff --> | |
<meta property="fb:admins" content=" ... "/> | |
<meta property="og:locale" content="en_UK"/> | |
<meta property="og:locale:alternate" content="nl_NL"/> | |
<meta property="og:type" content="website"/> | |
<meta property="og:image" content="../img/site-preview.png"/> | |
<meta property="og:title" content=" ... "/> | |
<meta property="og:description" content=" ... "/> | |
<meta property="og:url" content=" ... "/> | |
<meta property="og:site_name" content=" ... "/> | |
<!-- Twitter Integration --> | |
<meta name="twitter:card" content="summary"/> | |
<meta name="twitter:site" content=" ... "/> | |
<meta name="twitter:title" content=" ... "/> | |
<meta name="twitter:description" content=" ... "/> | |
<meta name="twitter:url" content=" ... "/> | |
<meta name="twitter:creator" content=" ... "/> | |
<meta name="twitter:image:src" content=" ... "/> | |
<meta name="twitter:domain" content=" ... "/> | |
<!-- // Twitter Integration --> | |
<meta name="msapplication-TileImage" content=" ... "/> | |
<meta name="msapplication-TileColor" content="#323A46"/> | |
<link rel="author" href="humans.txt"/> | |
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/> | |
<link rel="image_src" href=" ... "/> | |
<link rel="apple-touch-icon" href=" ... "/> | |
<!-- Verification codes --> | |
<meta name="google-site-verification" content=" ... "/> | |
<meta name="msvalidate.01" content=" ... "/> | |
<meta name="p:domain_verify" content=" ... "/> | |
<meta name="alexaVerifyID" content=" ... "/> | |
<link rel="alternate" type="text/directory" title="vCard" href=" ... "/> | |
<!-- Open Graph, Google Plus & Twitter Card Integration --> | |
<meta itemprop="name" content=" ... "/> | |
<meta itemprop="description" content=" ... "/> | |
<meta itemprop="image" content=" ... "/> | |
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Kreon:400,700|Signika:400,300,600,700" media="screen" type="text/css"/> | |
<link rel="stylesheet" href="../dest/css/epicss-all.min.css" media="screen" type="text/css"/> | |
<link rel="canonical" href=" ... "/> | |
<link rel="publisher" href=" ... "/> | |
<link rel="author" href=" ... "/> | |
<meta property="article:publisher" content=" ... "/> | |
<meta property="article:published_time" content=" ... "/> | |
<meta property="article:modified_time" content=" ... "/> | |
<!--[if lt IE 9]> | |
<script src="../dest/js/vendor/modernizr.min.js" type="text/javascript"></script> | |
<script src="../dest/js/vendor/respond.min.js" type="text/javascript"></script> | |
<![endif]--> | |
</head> | |
<body class="epicss"> | |
<!--[if lt IE 8]> | |
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> | |
<![endif]--> | |
<script> | |
var oldieCheck = Boolean(document.getElementsByTagName('html')[0].className.match(/\soldie\s/g)); | |
if(!oldieCheck) { | |
document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js" type="text/javascript"><\/script>'); | |
} else { | |
document.write('<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js" type="text/javascript"><\/script>'); | |
} | |
</script> | |
<script src="../dest/js/epicss.min.js" type="text/javascript"></script> | |
<script src="../dest/js/epicss-app.min.js" type="text/javascript"></script> | |
<script> | |
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= | |
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; | |
e=o.createElement(i);r=o.getElementsByTagName(i)[0]; | |
e.src='//www.google-analytics.com/analytics.js'; | |
r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); | |
ga('create','UA-XXXXX-X');ga('send','pageview'); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment